public bool IsBcc(EmailMail entity)
 {
     return(entity.Bcc != null && entity.Bcc.Any());
 }
 public bool IsCc(EmailMail entity)
 {
     return(entity.Cc != null && entity.Cc.Any());
 }