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...
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...
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:
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/ )
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.