public void SendEmail(string subject, string body, MailAddress from, MailAddress to, List <string> bcc, List <string> cc, EmailAccount emailAccount)
 {
     throw new NotImplementedException();
 }
 public void UpdateEmailAccount(EmailAccount emailAccount)
 {
     throw new NotImplementedException();
 }
 public void SendEmail(string subject, string body, string from, string to, EmailAccount emailAccount)
 {
     throw new NotImplementedException();
 }
 public void InsertEmailAccount(EmailAccount emailAccount)
 {
     throw new NotImplementedException();
 }