I created a Forgot Password functionality for my website using the password_reset function that is built in Django
it sends an email like so:
You're receiving this e-mail because you requested a password reset for your user account at example.com.
Please go to the following page and choose a new password:
http://example.com/reset/3/2zf-fe162b1d79f1b85c3630/
Your username, in case you've forgotten: Angie
Thanks for using our site!
The example.com team
Where would I change this email?
The default template for that email is
django/contrib/admin/templates/registration/password_reset_email.html. You can override it by providing your own templatetemplates/registration/password_reset_email.htmlin your top app directory as usual.