summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian D'Alessandro <a.dalessandro@imperial.ac.uk>2020-04-28 11:43:47 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-30 12:45:43 +0200
commit235b68135172c473e022045931719f047cf3dc4a (patch)
tree34b0ecb21f46a80e18c2b6136ff303d0a7dc647e /docs
parentc226c6cb3209122b6732fd501e2994c408dc258e (diff)
Doc'd send_email() behavior when from_email is None.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/email.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/email.txt b/docs/topics/email.txt
index ba8778daf8..46b1bb3ad5 100644
--- a/docs/topics/email.txt
+++ b/docs/topics/email.txt
@@ -51,7 +51,8 @@ are required.
* ``subject``: A string.
* ``message``: A string.
-* ``from_email``: A string.
+* ``from_email``: A string. If ``None``, Django will use the value of the
+ :setting:`DEFAULT_FROM_EMAIL` setting.
* ``recipient_list``: A list of strings, each an email address. Each
member of ``recipient_list`` will see the other recipients in the "To:"
field of the email message.