/// <summary>
 /// </summary>
 public SmtpMailAttributes()
 {
     To = new List<MailAddress>();
     Cc = new List<MailAddress>();
     Bcc = new List<MailAddress>();
     ReplyTo = new List<MailAddress>();
     Attachments = new AttachmentCollection();
     AlternateViews = new List<AlternateView>();
     Headers = new Dictionary<string, string>();
 }
 public MailAttributes()
 {
     To = new List<MailAddress>();
     Cc = new List<MailAddress>();
     Bcc = new List<MailAddress>();
     ReplyTo = new List<MailAddress>();
     Headers = new Dictionary<string, string>();
     Attachments = new AttachmentCollection();
     AlternateViews = new List<AlternateView>();
     ExtraProperties = new Dictionary<string, string>();
     PostProcessors = new List<IPostProcessor>();
 }
Example #3
0
 public MailAttributes()
 {
     To              = new List <MailAddress>();
     Cc              = new List <MailAddress>();
     Bcc             = new List <MailAddress>();
     ReplyTo         = new List <MailAddress>();
     Headers         = new Dictionary <string, string>();
     Attachments     = new AttachmentCollection();
     AlternateViews  = new List <AlternateView>();
     ExtraProperties = new Dictionary <string, string>();
     PostProcessors  = new List <IPostProcessor>();
 }