I am getting this error when I am using it in sharepoint project, while in console app its working fine
I am using MailMessage
class to send email using SMTP .
But when I trying to add user to 'To' property I am getting {"An invalid character was found in the mail header: ','."} exception, which I think something fishy is happening here as ',' is allowed to separate multiple users . Adding multiple user
** Multiple e-mail addresses must be separated with a comma character (",").**
MailMessage mailMessage = new MailMessage();
mailMessage.To.Add("[email protected],[email protected],");