mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +00:00
Fixed #29535 -- Updated email.MIME* references for Python 3.
This commit is contained in:
parent
96199e562d
commit
b5dd6ef3d5
@ -272,7 +272,7 @@ All parameters are optional and can be set at any time prior to calling the
|
|||||||
new connection is created when ``send()`` is called.
|
new connection is created when ``send()`` is called.
|
||||||
|
|
||||||
* ``attachments``: A list of attachments to put on the message. These can
|
* ``attachments``: A list of attachments to put on the message. These can
|
||||||
be either ``email.MIMEBase.MIMEBase`` instances, or ``(filename,
|
be either :class:`~email.mime.base.MIMEBase` instances, or ``(filename,
|
||||||
content, mimetype)`` triples.
|
content, mimetype)`` triples.
|
||||||
|
|
||||||
* ``headers``: A dictionary of extra headers to put on the message. The
|
* ``headers``: A dictionary of extra headers to put on the message. The
|
||||||
@ -310,7 +310,7 @@ The class has the following methods:
|
|||||||
recipients will not raise an exception.
|
recipients will not raise an exception.
|
||||||
|
|
||||||
* ``message()`` constructs a ``django.core.mail.SafeMIMEText`` object (a
|
* ``message()`` constructs a ``django.core.mail.SafeMIMEText`` object (a
|
||||||
subclass of Python's ``email.MIMEText.MIMEText`` class) or a
|
subclass of Python's :class:`~email.mime.text.MIMEText` class) or a
|
||||||
``django.core.mail.SafeMIMEMultipart`` object holding the message to be
|
``django.core.mail.SafeMIMEMultipart`` object holding the message to be
|
||||||
sent. If you ever need to extend the
|
sent. If you ever need to extend the
|
||||||
:class:`~django.core.mail.EmailMessage` class, you'll probably want to
|
:class:`~django.core.mail.EmailMessage` class, you'll probably want to
|
||||||
@ -326,8 +326,8 @@ The class has the following methods:
|
|||||||
* ``attach()`` creates a new file attachment and adds it to the message.
|
* ``attach()`` creates a new file attachment and adds it to the message.
|
||||||
There are two ways to call ``attach()``:
|
There are two ways to call ``attach()``:
|
||||||
|
|
||||||
* You can pass it a single argument that is an
|
* You can pass it a single argument that is a
|
||||||
``email.MIMEBase.MIMEBase`` instance. This will be inserted directly
|
:class:`~email.mime.base.MIMEBase` instance. This will be inserted directly
|
||||||
into the resulting message.
|
into the resulting message.
|
||||||
|
|
||||||
* Alternatively, you can pass ``attach()`` three arguments:
|
* Alternatively, you can pass ``attach()`` three arguments:
|
||||||
|
Loading…
Reference in New Issue
Block a user