dim lacalmailserver as string="10.10.10.10"
dim to_add as string="abc&india.com;def@international.com"
Dim EmailServer As New System.Net.Mail.SmtpClient(LocalMailServer)
Dim myMessage As New System.Net.Mail.MailMessage(from_add, to_add, mail_subject, mail_body)
EmailServer.Send(myMessage)
myMessage = Nothing
I am using this procedure to send an emial. For @india.com we are using 10.10.10.10(example) and for international we are using 10.10.10.20.
In this context how can i send email to both email id's.