I have a nice functionality to work upon which need to implement a auto email schedular in umbraco for members who register. I want to make a schedular which send registered users auto email at 11th or 12th month from their registering date if they don't confirm their link??
Umbraco has scheduled tasks which should be an ideal solution for you.
And so you can write some custom functionality (maybe using Umbraco API) to do the checking of registered users and sending of an email, and then add the API URL to the scheduled tasks section of the /config/umbracoSettings.config file.
A caveat for this approach is that the scheduled tasks only run if the site is "alive", iue the Application Pool hasn't gone to sleep - this can be an issue for more time critical tasks, however in your case, it does not appear time critical, only that you want to send an email after 11 months (or similar).
Umbraco Email Schedular
Hello Umbracians
I have a nice functionality to work upon which need to implement a auto email schedular in umbraco for members who register. I want to make a schedular which send registered users auto email at 11th or 12th month from their registering date if they don't confirm their link??
Any Idea ???
Hi Pranjal
Umbraco has scheduled tasks which should be an ideal solution for you.
And so you can write some custom functionality (maybe using Umbraco API) to do the checking of registered users and sending of an email, and then add the API URL to the scheduled tasks section of the /config/umbracoSettings.config file.
A caveat for this approach is that the scheduled tasks only run if the site is "alive", iue the Application Pool hasn't gone to sleep - this can be an issue for more time critical tasks, however in your case, it does not appear time critical, only that you want to send an email after 11 months (or similar).
I hope this helps get you started.
Cheers, Nigel
You could always try https://www.hangfire.io/. This integrates with any asp.net application.
is working on a reply...