summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-11-16 10:37:50 -0500
committerTim Graham <timograham@gmail.com>2017-11-16 10:39:26 -0500
commit1738592bd05d2526724ded69346d8548197ae49d (patch)
treed933719ed021f6764b087d506ee06882e28be651 /docs/topics
parent260bc84901951d9a9f23f23a4d7ae8bd4e2de298 (diff)
[1.10.x] Fixed #28802 -- Fixed typo in docs/topics/auth/default.txt.
Backport of d392fc293c9439c19451e152f9560f24d1659563 from master
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/auth/default.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index 6f8a471727..a365c4d2a8 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -1564,7 +1564,7 @@ provides several built-in forms located in :mod:`django.contrib.auth.forms`:
A form for generating and emailing a one-time use link to reset a
user's password.
- .. method:: send_email(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
+ .. method:: send_mail(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
Uses the arguments to send an ``EmailMultiAlternatives``.
Can be overridden to customize how the email is sent to the user.