To=aaaaaaa@gmail.com;bbbbbbbb@gmail.com;ccccccccc@gmail.com;
This will work in the namespace Sytstem.Web.Mail because here we use semicolon to split or separate email ID's.
But the ERROR: "Specified string is not in the form required for an e-mail address" will appear when we use semicolon as a separator in .net 2.0. Because the namespace System.Net.Mail in .net 2.0 framework will use comma as the email separator instead of semicolon. So we will use like below:
To="aaaaaaa@gmail.com,bbbbbbbb@gmail.com,ccccccccc@gmail.com";
Hope now your problem has been resolved.










0 comments:
I WOULD BE DELIGHTED TO HEAR FROM YOU