I have an ASP.NET Webform application (C#) configured in an IIS server. The application connects to a database on another server for its normal operation.
Now I need to create an auto emailing system. This system should check certain conditions in the database, and based on that it should send automatic emails to certain email ids. I have an smtp mail server, and I know how to do the automatic emailing using C#.
This emailing should be triggered daily at a certain time. So how will I configure such a job in my server? What are my options?
I am pretty new to the ASP world. Thanks for help.