Problem in sending Mails

prav_roy

Well-known member
Joined
Sep 10, 2005
Messages
70
Location
Mumbai
Programming Experience
1-3
i have problem in sending mails,
i can send mails to only on cc but to other it does not go

msg1.From = "dsap@xnetwork.com"
msg1.To = kadavs@xnetwork.com //works fine
msg1.Cc = helpdesk@xnetwork.com //does not work
msg1.Cc = vijay@xnetwork.com //does not work
msg1.Cc = nairm@xnetwork.com //works fine
msg1.Subject = "Some Subject"
msg1.Body = strMessage.ToString
msg1.BodyFormat = MailFormat.Html
msg1.Priority = MailPriority.Normal
SmtpMail.Send(msg1)

here it can send one capy to To and one copy to last CC other CC are not be sent
could some one help me please
 
Back
Top