Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Do not use System.Web.Mail. Use System.Net.Mail. See this <a href="http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx" rel="nofollow noreferrer">blog</a>.</p> <p>System.Web.Mail is deprecated and not recommended.</p> <p>You need to pass the work onto an actual mail server/service. A third party one is your best option. Do not send email directly from the web application code as request timeouts, authentication timeouts, etc will eventually halt your send loop. Also, this process will lock up the current page/session until it is done/halted and I have also experienced entire applications locking up for ALL visitors when pages are executing heavy tasks like this.</p> <p>If all you want is a cheap email server that you can add emails to a queue and the server will just chug through them and send them, then <a href="http://aws.amazon.com/ses/" rel="nofollow noreferrer">Amazon SES</a> is worth a look. If you want more user management and campaign management tools, then <a href="http://www.MailChip.com" rel="nofollow noreferrer">MailChimp</a> or <a href="http://www.JangoMail.com" rel="nofollow noreferrer">JangoMail</a> might be your best options.</p> <p>Amazon SES is definitely the cheapest as you only pay for what you use. I spend 4 bucks a month on average.</p> <p>All of these provide APIs you can use in your code.</p> <p>Aside: Do ensure that your recipients have somehow requested or are otherwise expecting these emails. Sending spam is illegal and the punishment is harsh.</p> <h2>Resources</h2> <p>Please also check out these questions:</p> <ul> <li><a href="https://stackoverflow.com/questions/5902643/how-do-you-send-mass-emails-from-asp-net">How do you send mass emails from ASP.NET?</a></li> <li><a href="https://stackoverflow.com/questions/3905734/how-to-send-100-000-emails-weekly/3905805#3905805">How to send 100,000 emails weekly?</a></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload