summaryrefslogtreecommitdiff
path: root/django/core/mail/message.py
Commit message (Expand)AuthorAgeFilesLines
* Updated documentation and comments for RFC updates.Nick Pope2022-11-101-3/+3
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-79/+121
* Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.core.Daniyal2021-03-191-5/+9
* Fixed #31784 -- Fixed crash when sending emails on Python 3.6.11+, 3.7.8+, an...Florian Apolloner2020-07-201-4/+12
* Fixed E128, E741 flake8 warnings.Mariusz Felisiak2020-05-121-2/+2
* Corrected several typos in string literals and test names.Min ho Kim2019-08-071-1/+1
* Refs #30608 -- Added django.utils.encoding.punycode().Mariusz Felisiak2019-07-031-5/+2
* Fixed #30512 -- Used email.headerregistry.parser for parsing emails in saniti...Joachim Jablon2019-06-131-45/+33
* Refs #27753 -- Favored force/smart_str() over force/smart_text().Aymeric Augustin2019-02-061-2/+2
* Fixed #29830 -- Fixed loss of custom utf-8 body encoding in mails.jannschu2018-10-221-1/+1
* Ref #23919 -- Replaced some os.path usage with pathlib.Path.Tom2018-04-191-5/+4
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-161-2/+1
* Fixed #29140 -- Fixed EmailMessage crash when body is None.Williams Mendez2018-02-201-1/+1
* Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов2018-01-121-3/+2
* Fixed #28982 -- Simplified code with and/or.Дилян Палаузов2018-01-031-5/+1
* Fixed #28912 -- Made EmailMessage.message() omit an empty To header.Jon Dufresne2017-12-301-2/+2
* Fixed #28971 -- Made EmailMessage.message() set Cc from headers dict if it ex...Jon Dufresne2017-12-301-4/+14
* Fixed #26344 -- Made EmailMessage include alternatives when the body is empty...Igor Tokarev2017-09-041-1/+1
* Replaced some map() and filter() calls with generators.Tom2017-05-271-2/+2
* Refs #28196 -- Removed mentions of bytestrings for EmailMessageClaude Paroz2017-05-141-8/+0
* Refs #27795 -- Replaced many force_text() with str()Claude Paroz2017-04-271-5/+5
* Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's attachme...kalombo2017-04-071-1/+7
* Fixed #27848 -- Prevented crash when attaching a .eml file to a messageClaude Paroz2017-04-011-1/+1
* Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan2017-02-211-20/+17
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-2/+2
* Removed unneeded parentheses in class definitionsClaude Paroz2017-01-291-1/+1
* Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis2017-01-261-4/+4
* Refs #23919 -- Removed misc Python 2/3 references.Tim Graham2017-01-251-2/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-1/+1
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-1/+1
* Fixed #23905, refs #23919 -- Used make_msgid() from stdlib.Tim Graham2017-01-191-32/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-3/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-5/+5
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-31/+15
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-181-2/+0
* Fixed #27696 -- Measured email long lines on encoded contentClaude Paroz2017-01-061-1/+4
* Fixed #27469 -- Prevented sending email to empty addressesClaude Paroz2016-11-101-1/+1
* Fixed #27333 -- Prevented BASE64 encoding in message.as_string() on Python 3Claude Paroz2016-10-121-20/+9
* Fixed #27007 -- Handled non-UTF-8 bytes objects for text/* attachments.Michael Schwarz2016-08-121-28/+29
* Fixed #26802 -- Prevented crash when attaching bytes as text messageClaude Paroz2016-07-081-2/+6
* Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting.Anton I. Sipos2016-06-041-1/+5
* Fixed #26580 -- Updated references to obsolete RFC 2822.Vasiliy Faronov2016-05-101-1/+1
* Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of the...Sergei Maertens2016-05-061-9/+53
* Fixed #22561 -- Prevented too long lines in email messagesClaude Paroz2016-04-191-1/+8
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-4/+3
* Fixed #24623 -- Fixed EmailMessage.attach_file() with text files on Python 3.Konrad Świat2015-07-251-3/+29
* Replaced six.BytesIO with io.BytesIOTim Graham2015-07-201-1/+2
* Removed support for Python 3.3.Tim Graham2015-06-181-8/+1
* Fixed #24416 -- Added support for lazy email addresses.medmunds2015-03-131-4/+4