Automatic date based notifications in django

I need to implement a way to send automatic email notifications based on the DateFields model. I will give an example.

I have a DateField from 2010-07-23 that is stored in it, and I want django to send an email to the designated user when the current date reaches a week earlier (send it on 2010-07-16). Is there any way to do this?

+7
django email django-admin notifications
source share
1 answer

You will need to configure an external task, possibly called via cron, which checks the date and sends an email as necessary.

+5
source share

All Articles