Doc'd send_email() behavior when from_email is None.
This commit is contained in:
parent
c226c6cb32
commit
235b681351
|
@ -42,6 +42,7 @@ def send_mail(subject, message, from_email, recipient_list,
|
||||||
Easy wrapper for sending a single message to a recipient list. All members
|
Easy wrapper for sending a single message to a recipient list. All members
|
||||||
of the recipient list will see the other recipients in the 'To' field.
|
of the recipient list will see the other recipients in the 'To' field.
|
||||||
|
|
||||||
|
If from_email is None, use the DEFAULT_FROM_EMAIL setting.
|
||||||
If auth_user is None, use the EMAIL_HOST_USER setting.
|
If auth_user is None, use the EMAIL_HOST_USER setting.
|
||||||
If auth_password is None, use the EMAIL_HOST_PASSWORD setting.
|
If auth_password is None, use the EMAIL_HOST_PASSWORD setting.
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,8 @@ are required.
|
||||||
|
|
||||||
* ``subject``: A string.
|
* ``subject``: A string.
|
||||||
* ``message``: 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
|
* ``recipient_list``: A list of strings, each an email address. Each
|
||||||
member of ``recipient_list`` will see the other recipients in the "To:"
|
member of ``recipient_list`` will see the other recipients in the "To:"
|
||||||
field of the email message.
|
field of the email message.
|
||||||
|
|
Loading…
Reference in New Issue