Example #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         if (WebMailClientManager.AccountIsValid())
         {
             MailComposer1.Initialize(SendType, this.SottoTitolo);
         }
     }
 }
Example #2
0
 public void Initialize(MailActions sendType)
 {
     this.SendType = sendType;
     MailComposer1.Initialize(sendType, this.SottoTitolo);
 }
Example #3
0
 public void Initialize(MailActions sendType, bool mailEditabile)
 {
     this.SendType      = sendType;
     this.MailEditabile = mailEditabile;
     MailComposer1.Initialize(sendType, this.SottoTitolo, this.MailEditabile);
 }
Example #4
0
 protected void Login_OnChangeStatus(object sender, EventArgs e)
 {
     MailComposer1.Initialize(SendType, this.SottoTitolo);
 }