﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
28802	PasswordResetForm has method send_email in the documentation but send_mail is the correct method	Daniel Clayton	nobody	"The documentation for PasswordResetForm has a typo. [https://docs.djangoproject.com/en/1.11/topics/auth/default/#django.contrib.auth.forms.PasswordResetForm] It lists 
{{{
send_email(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
}}}
as a method, the correct method name is:
{{{
send_mail(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
}}}
as seen here [https://github.com/django/django/blob/master/django/contrib/auth/forms.py#L246]

"	Bug	closed	contrib.auth	1.11	Normal	fixed			Unreviewed	0	0	0	0	1	0
