[Answered ]-Best way to change a django model field automatically after a certain amount of time?

1👍

You could use celery to create a periodic task that checks every day or hour for entries that fullfill this requirements, update it and send an email:

https://django-celery-beat.readthedocs.io/en/latest/index.html

Leave a comment