Exemplo n.º 1
0
 public void AddCC(ICollection <string> cc)
 {
     cc = cc ?? new List <string>();
     CC.AddRange(cc);
 }
Exemplo n.º 2
0
 public void AddCc(IEnumerable <string> emails)
 {
     CC.AddRange(emails.Select(email => new MailboxAddress(email, email)).ToList());
 }