Django忘记密码功能更改默认电子邮件

Ang*_*gie 2 python email passwords django reset

我使用在Django中构建的password_reset函数为我的网站创建了一个Forgot Password功能,它发送了一封如下所示的电子邮件:

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
Run Code Online (Sandbox Code Playgroud)

我会在哪里更改此电子邮件?

小智 6

该电子邮件的默认模板是django/contrib/admin/templates/registration/password_reset_email.html.您可以templates/registration/password_reset_email.html像往常一样在顶级应用程序目录中提供自己的模板来覆盖它.