'How do I ensure consistency with Django's password reset email function
I am trying to use Django's built in password reset email function. The emails get sent for some user accounts but not others. All other email sending functionality on my app works - so I guess my settings are correct. I read that the user account has to have a 'usable' password so I tried changing that and then testing the reset function and still the emails do not deliver. I tested the reset function in the django shell with: >>> send_mail('Test', 'Test','MY_FROM_EMAIL_ADDRESS',['MY_TO_EMAIL_ADDRESS'], fail_silently=False) 1
As you can see the output from the shell command suggests that the email was send, but it was not received. Any ideas what may be causing the inconsistencies?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
