在没有浏览器的情况下在 django 中触发密码重置电子邮件?

发布于 2024-10-30 21:19:58 字数 125 浏览 0 评论 0原文

我希望能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自此以后,行同陌路 2024-11-06 21:19:58
from django.contrib.auth.forms import PasswordResetForm

def reset_password(email, from_email, template='registration/password_reset_email.html', domain_override="localhost:8000"):
    """
    Reset the password for all (active) users with the given E-Mail address
    """
    form = PasswordResetForm({'email': email})
    if form.is_valid():
        return form.save(from_email=from_email, email_template_name=template)
from django.contrib.auth.forms import PasswordResetForm

def reset_password(email, from_email, template='registration/password_reset_email.html', domain_override="localhost:8000"):
    """
    Reset the password for all (active) users with the given E-Mail address
    """
    form = PasswordResetForm({'email': email})
    if form.is_valid():
        return form.save(from_email=from_email, email_template_name=template)
无人问我粥可暖 2024-11-06 21:19:58

您可以只使用 django.contrib.auth.forms.PasswordResetForm 并用如下数据填充它:

form = PasswordResetForm({'email':'[email protected]'})

电子邮件的发送是在 save() 时完成的。

You can just use django.contrib.auth.forms.PasswordResetForm and populate it with data like this:

form = PasswordResetForm({'email':'[email protected]'})

The sending of email is done upon save().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文