Thursday, October 23rd, 2008
Filed in Development
AspNetEmail component: bulk emailing without delays
During my recent work, I occasionally discovered several nice features in AspNetEmail component , which might be used in ASP.NET web projects while sending bulk emails. Emailing is often required, for instance,
Read the rest of entry »
- to notify site members about new comments posted in a thread they subscribed.
- to notify site admin about new users registered during the day.
- to invite new members on the site.
Eventually, the task may require sending hundreds emails from a web-page, which may lead to hanging many seconds or even minutes until the web request is finished. To avoid it, you can implement emailing in a separate thread. Here is where AspNetEmail component comes up with a smart solution. It provides an API method for asynchronous bulk emailing. The email logic, utilized this API call inside a web page, is being executed asynchronously, so the web request is completed immediately and the web-page is refreshed without delay. Very handy to use!
This entry was posted on Thursday, October 23rd, 2008 at 9:31 am and is filed under Development. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.



Comments
This entry has 2 responses