Im using the bellow code to send email it is sending fine; it sending to only one destination at a time but i want to send to the two destinations at a time plss help me on this....
MailMessage
objmsg = new MailMessage(); objmsg.To = "[email protected]";objmsg.Subject =
"The patient Details Are:";objmsg.Body =
"objmsg.BodyFormat =
MailFormat.Html;objmsg.From =
"[email protected]"; SmtpMail.SmtpServer = ""; SmtpMail.Send(objmsg);
Niradhip ChakrabortyPosted Mar 19, 2009, 9:16 AM
check out:
1.http://www.dotnetspider.com/forum/177014-send-email-bcc-multiple-persons-using-C.aspx
2.http://weblogs.asp.net/nawaf/archive/2007/12/07/sending-email-in-c-sync-async-multiple-recipients-attachments-etc.aspx
3.http://www.c-sharpcorner.com/UploadFile/scottlysle/EmailAttachmentsCS08052008234321PM/EmailAttachmentsCS.aspx