G
Guest
I am using MailMessage class of .NET framework .....
I have a scenerio in which i need to send mail to large number if users >
10,000 users.....
I know i can do ......
MailMessage msg = new MailMessage();
msg.To = (e-mail address removed);[email protected]; // Semi colon seperated alias assigned.
SmtpServer.Send(msg);
But giving such a huge list in "To" field.. will it work or will it get the
whole thing crashing down.
OR
Will it be a better option to split the To list in to small lists of 100 and
then send more than 1 mail for each list of 100 users.
Any thoughts are welcome or Data in numbers on how many should be in To list
is safe number to send
I have a scenerio in which i need to send mail to large number if users >
10,000 users.....
I know i can do ......
MailMessage msg = new MailMessage();
msg.To = (e-mail address removed);[email protected]; // Semi colon seperated alias assigned.
SmtpServer.Send(msg);
But giving such a huge list in "To" field.. will it work or will it get the
whole thing crashing down.
OR
Will it be a better option to split the To list in to small lists of 100 and
then send more than 1 mail for each list of 100 users.
Any thoughts are welcome or Data in numbers on how many should be in To list
is safe number to send