C # code for sms and email notification service

I am working on the ASP.NET MVC 3.0 SQL Server framework. I need to create a daily reminder system in which the user enters an email address and reminder timings, such as 1st Reminder (9 AM), second reminder (12PM) and third reminder (6PM) , and the system should send emails to these timings.

What is the best way to send emails when time criteria are met. Please suggest various ways to solve this problem.

+5
source share
1 answer

Basically you want to send an email as a schedule job, and for this we will all quickly think about how the Windows service sits in the background and executes the scheduled task

But if you want to achieve the same with ASP.NET, read more about this CacheItemRemovedCallback class

Their very good blog is written and shown with a good example at http://blog.stackoverflow.com/2008/07/easy-background-tasks-in-aspnet/

+1
source

All Articles