Link to home
Start Free TrialLog in
Avatar of kollu
kollu

asked on

ASP.NET,C# Email

I want to send different href string for different people throgh email with one send.I use the follwoing code.I want to split the email string,actually there could be upto 3 emails for each email I have different url to be coded.

      msgMail.To = EmailString;            msgMail.From = ""                  msgMail.From = str1 + "\"" + str2;
msgMail.Subject =  ""                        msgMail.BodyFormat = MailFormat.Html;                        msgMail.Body = strBody;      SmtpMail.SmtpServer = "";            SmtpMail.Send(msgMail);
ASKER CERTIFIED SOLUTION
Avatar of AerosSaga
AerosSaga

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AerosSaga
AerosSaga

agreed;)
ya,you should separate the recipients by ";".

Also tell me the value of EMailstring variable?.