Esempio n. 1
0
 public EmailMessage(string email, BlindCarbonCopy bcc, string subject, string content, Sender sender)
 {
     Email   = email;
     Bcc     = bcc;
     Subject = subject;
     Content = content;
     Sender  = sender;
 }
Esempio n. 2
0
 public SaveEmailCommand(
     string content,
     Sender sender,
     string subject,
     EmailType type,
     BlindCarbonCopy bcc,
     string username)
 {
     Sender   = sender;
     Content  = content;
     Subject  = subject;
     Type     = type;
     Bcc      = bcc;
     Username = username;
 }