Multiple address on mail message in .Net 2.0

  • Thread starter Thread starter UJ
  • Start date Start date
U

UJ

How do you send mail to multiple users? I've got a string with e-mail
addresses separated by semi colon and when I create the MailMessage doing:


System.Net.Mail.MailMessage lobjMail = new
System.Net.Mail.MailMessage([email protected], lsMail);

it tells me the to address is not in the correct format.

So how can I send one mail message to multiple users?

TIA - Jeff.
 
How do you send mail to multiple users? I've got a string with e-mail
addresses separated by semi colon and when I create the MailMessage doing:


System.Net.Mail.MailMessage lobjMail = new
System.Net.Mail.MailMessage([email protected], lsMail);

it tells me the to address is not in the correct format.

So how can I send one mail message to multiple users?

TIA - Jeff.

Hi Jeff.

Read this for some ideas

http://www.codeproject.com/useritems/EmailApplication.asp
 
Back
Top