I am using the below code, and it only sends one email - I have to send the email to multiple addresses.
For getting more than one email I use:
strin
You are also allowed to pass MailMessage.To.Add()a comma separated list of valid RFC 822 e-mail addresses:
MailMessage.To.Add()
Nathaniel Borenstein , Ned Freed
So the code would be:
message.To.Add("Nathaniel Borenstein , Ned Freed ");
Note: Any code released into public domain. No attribution required.