internal WndSendSmtp(PNSmtpProfile client, string noteName, string body, IEnumerable<string> attachment)
     : this()
 {
     _Client = client;
     _Attachment = attachment;
     _Body = body;
     _NoteName = noteName;
 }
 internal WndSendSmtp(PNSmtpProfile client, string noteName, string recipient, string body, IEnumerable<string> attachment)
     : this(client, noteName, body, attachment)
 {
     _Recipients = recipient;
 }
Exemple #3
0
 internal WndSmtp(PNSmtpProfile client)
     : this()
 {
     _Mode = client == null ? AddEditMode.Add : AddEditMode.Edit;
     _Client = client == null ? new PNSmtpProfile() : client.PNClone();
 }
Exemple #4
0
 internal SmtpChangedEventArgs(PNSmtpProfile profile, AddEditMode mode)
 {
     _Profile = profile;
     _Mode = mode;
     Accepted = true;
 }