Add Email addressCollection to, cc, bcc and replytoList
- by san
i want to add MailAddressCollection with to,cc,bcc and replytolist of my MailMessage(Net.Mail)
my code Like
MessageEntity.To.Add(GetMailAddress(TOEmailAddress));
MessageEntity.CC.Add(GetMailAddress(CCEmailAddress));
MessageEntity.Bcc.Add(GetMailAddress(BCCEmailAddress));
…