public MailMessage() { _mapi = new MAPI(); ToAddresses = new List<string>(); CCAddresses = new List<string>(); BCCAddresses = new List<string>(); AttachmentFilePaths = new List<string>(); }
public MailMessage(MAPI mapi) : this() { _mapi = mapi; }