在没有浏览器的情况下在 django 中触发密码重置电子邮件?
我希望能够使用 django.contrib.auth.views.password_reset 发送密码重置电子邮件 但如果不使用浏览器-password_reset需要一个填充的表单,有没有办法我可以以编程方式创建它并发送电子邮件?
I want to be able to send a password reset email using django.contrib.auth.views.password_reset
but without using the browser - password_reset needs a populated form, is there a way I can create this programmatically and get the email sent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以只使用 django.contrib.auth.forms.PasswordResetForm 并用如下数据填充它:
电子邮件的发送是在 save() 时完成的。
You can just use django.contrib.auth.forms.PasswordResetForm and populate it with data like this:
The sending of email is done upon save().