vote up 0 vote down star

Hi folks,

i need to send emails to users when some actions happen in the site. now, there could be zero emails to send ... or a few hundred.

How is the best way to send these emails ASYNCHRONOUSLY in an ASP.NET WebForm or ASP.NET MVC web application?

Thanks :)

flag

77% accept rate

closed as exact duplicate by Pure.Krome Dec 15 '08 at 1:41

3 Answers

vote up 0 vote down check

Check this SO thread about background threading in ASP.NET.

link|flag
Danm! i've already asked this question before! :( HAHAHA thanks mate :) (i'll close this.. oops!) – Pure.Krome Dec 15 '08 at 1:41
Okay, I didn't notice the poster before. Classic! – Joel Meador Dec 16 '08 at 18:33
That is hilarious! – TheDeeno Mar 26 at 19:32
vote up 2 vote down

use System.Net.Mail, but you can't use the asynch send directly. Instead send the email(s) from a secondary thread. The thread pool (worker thread) should suffice, but bear in mind that there is no unhandled-exception trapping so you should build in your own exception handling. Also try not to send too many emails simultaneously.

link|flag
vote up 1 vote down

I have been pondering this problem myself in the last few days, have a similar problem in that it might be one email, or sometimes it might be a few thousand.

The basic approach which I am looking at, currently building, is to put the messages into a queue table in the DB, and then fire off a queue processor every minute (or whatever interval suits) to send them out. Am adding a config item for max messages per interval, so the queue processor can be throttled depending on the hosting arrangement. (current impl has its own box and smtp server, so that wasn't a problem before.)

Would be interested to hear what approach you come up with.

link|flag

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