tags:

views:

112

answers:

5

I'm looking for an email service or plugin for ASP.NET that will allow me to send daily email updates to my email list based on information i have stored in a database.

Any advice/help would be greatly appreciated.

Thanks...

+8  A: 

I don't know of any 'plugin' that you can use, but the .Net framework has the System.Net.Mail classes.

For more information, see here: http://weblogs.asp.net/scottgu/archive/2005/12/10/432854.aspx

and here:

http://aspnet.4guysfromrolla.com/articles/072606-1.aspx

tardomatic
+1  A: 

Use Castle EmailSender Component to send emails.

Quartz.NET for scheduling the daily task. (Or write your own scheduling, nayyeri.net/blog/how-to-build-a-task-scheduler-system-for-the-asp-net-ndash-part-1/ )

Ola Herrdahl
+1  A: 
jalpesh
+1  A: 

This is really simple task since .NET already provides very nice API for sending email inside the System.Net.Mail namespace. Dont realize too much on a third party tool. Create a simple windows sceduler that runs everyday.

Shiva
I'm glad you like my API. Thanks!
Jeff Tucker
A: 

Can windows scheduler be used on shared server ...

Pandiya Chendur