You don't have to change the PasswordResetView
, but you will have to create a custom PasswordResetForm
that you can then pass as a keyword argument to PasswordResetView.as_view()
.
If you look at the source code of PasswordResetView
, you will see that it doesn't actually send the email itself. The email sending is done as part of PasswordResetForm.save()
, which calls PasswordResetForm.send_mail()
You could subclass PasswordResetForm
and overwrite .send_mail()
to use your custom email backend:
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()