I have an ASP.NET MVC 3 site hosted on a normal hosting provider and have just discovered that they offer "scheduled tasks" functionality whereby a url (or Action Method) will be called on a defined interval.
I'm planning to use it to send emails stored in a database, so the action method will be called say every 15 minutes.
Do you foresee any issues, or would you simply advise against it? why?
Note: before coming across the "scheduled tasks" functionality I was planning to use Quartz.NET (see this other question of mine).
Which would you recommend?