您不必更改PasswordResetView
,但您必须创建一个自定义PasswordResetForm
,然后您可以将其作为关键字参数传递给PasswordResetView.as_view()
.
如果您查看 的源代码PasswordResetView
,您会发现它实际上并没有发送电子邮件本身。电子邮件发送是作为 的一部分完成的PasswordResetForm.save()
,它调用PasswordResetForm.send_mail()
您可以子类化PasswordResetForm
并覆盖.send_mail()
以使用您的自定义电子邮件后端:
from django.contrib.auth.forms import PasswordResetForm
class PostmarkPasswordResetForm(PasswordResetForm):
def send_mail(self, subject_template_name, email_template_name,
context, from_email, to_email, html_email_template_name=None):
"""
Send a django.core.mail.EmailMultiAlternatives to `to_email` using
`anymail.backends.postmark.EmailBackend`.
"""
subject = loader.render_to_string(subject_template_name, context)
# Email subject *must not* contain newlines
subject = ''.join(subject.splitlines())
body = loader.render_to_string(email_template_name, context)
email_backend = get_connection('anymail.backends.postmark.EmailBackend')
email_message = EmailMultiAlternatives(subject, body, from_email, [to_email], connection=email_backend)
if html_email_template_name is not None:
html_email = loader.render_to_string(html_email_template_name, context)
email_message.attach_alternative(html_email, 'text/html')
email_message.send()