Esempio n. 1
0
 public MailMessage()
 {
     _mapi = new MAPI();
     ToAddresses = new List<string>();
     CCAddresses = new List<string>();
     BCCAddresses = new List<string>();
     AttachmentFilePaths = new List<string>();
 }
Esempio n. 2
0
 public MailMessage(MAPI mapi)
     : this()
 {
     _mapi = mapi;
 }