vote up 0 vote down star

I am building a simple e-mail application to send emails to a list of people with an attachment.

To be able to add an attachment (from what I have found out) I need to use System.Web.Mail.

Is there any limit to how many email addresses I can send to at once?

flag

56% accept rate
Most likely if you add as many addresses to one email as theoretically possible, you will run afoul of every spam filter in existence. – Moose May 7 at 14:23
Just an FYI, System.Web.Mail has been deprecated and it is now recommended to use System.Net.Mail – Mike_G May 7 at 14:25
I missed that I could use Attache with System.Net.Mail. So I changed to System.Net.Mail instead. Thank you for the comment! – Fred May 13 at 14:39

1 Answer

vote up 0 vote down check

Email Protocol should not inherently limit the number of emails sent. Any limits you'll run into will most likely be imposed by your server or ISP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.