Tôi có nhiều người nhận email được lưu trữ trong SQL Server. Khi tôi nhấp vào gửi trong trang web, nó sẽ gửi email đến tất cả người nhận. Tôi đã tách các email bằng cách sử dụng ;
.
Sau đây là mã người nhận duy nhất.
MailMessage Msg = new MailMessage();
MailAddress fromMail = new MailAddress(fromEmail);
Msg.From = fromMail;
Msg.To.Add(new MailAddress(toEmail));
if (ccEmail != "" && bccEmail != "")
{
Msg.CC.Add(new MailAddress(ccEmail));
Msg.Bcc.Add(new MailAddress(bccEmail));
}
SmtpClient a = new SmtpClient("smtp server name");
a.Send(Msg);
sreader.Dispose();