I am new to Django. I built a program that lets teachers assign homework to students. The homework has a due date that is different for each student.
I want to make it so that 1 hour before the homework is due for that particular student, they get sent an email.
So, for example:
- Student 1 with HW due at 3 pm would get an email at 2 pm
- Student 2 with HW due at 1 am would get an email at 12 am
How can I achieve this? Thanks!!!