Is it possible to send password reset email in HTML in django-rest-auth? By default, HTML emails are disabled, and send in simple text from password_reset_email.html template. I have copied template to project structure templates, and can easily change the content of email.
But, as documented Django can optionally send fully featured HTML email for password reset. I can't figure it out how to send them from Django-rest-auth view.
Seems like django-rest-auth using custom serializer for def password_reset or class PasswordResetView, both of them have attributes: email_template_name, html_email_template_name.
It would be great if I can pass this attributes from my urls.py, here it is
from rest_auth.views import PasswordResetView,
url(r'^api/auth/reset/$', PasswordResetView.as_view(), name='rest_password_reset'),
Else, I should probably rewrite serializer (or even view) or even view for that.