summaryrefslogtreecommitdiff
path: root/django/core/mail/message.py
AgeCommit message (Expand)Author
2022-11-10Updated documentation and comments for RFC updates.Nick Pope
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-03-19Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.core.Daniyal
2020-07-20Fixed #31784 -- Fixed crash when sending emails on Python 3.6.11+, 3.7.8+, an...Florian Apolloner
2020-05-12Fixed E128, E741 flake8 warnings.Mariusz Felisiak
2019-08-07Corrected several typos in string literals and test names.Min ho Kim
2019-07-03Refs #30608 -- Added django.utils.encoding.punycode().Mariusz Felisiak
2019-06-13Fixed #30512 -- Used email.headerregistry.parser for parsing emails in saniti...Joachim Jablon
2019-02-06Refs #27753 -- Favored force/smart_str() over force/smart_text().Aymeric Augustin
2018-10-22Fixed #29830 -- Fixed loss of custom utf-8 body encoding in mails.jannschu
2018-04-19Ref #23919 -- Replaced some os.path usage with pathlib.Path.Tom
2018-03-16Fixed hanging indentation in various code.Mariusz Felisiak
2018-02-20Fixed #29140 -- Fixed EmailMessage crash when body is None.Williams Mendez
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-12-30Fixed #28912 -- Made EmailMessage.message() omit an empty To header.Jon Dufresne
2017-12-30Fixed #28971 -- Made EmailMessage.message() set Cc from headers dict if it ex...Jon Dufresne
2017-09-04Fixed #26344 -- Made EmailMessage include alternatives when the body is empty...Igor Tokarev
2017-05-27Replaced some map() and filter() calls with generators.Tom
2017-05-14Refs #28196 -- Removed mentions of bytestrings for EmailMessageClaude Paroz
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-04-07Fixed #28042 -- Fixed crash when using a two-tuple in EmailMessage's attachme...kalombo
2017-04-01Fixed #27848 -- Prevented crash when attaching a .eml file to a messageClaude Paroz
2017-02-21Refs #27656 -- Updated django.core docstring verbs according to PEP 257.Anton Samarchyan
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-01-29Removed unneeded parentheses in class definitionsClaude Paroz
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Removed misc Python 2/3 references.Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-20Refs #23919 -- Removed unneeded str() callsClaude Paroz
2017-01-19Fixed #23905, refs #23919 -- Used make_msgid() from stdlib.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-06Fixed #27696 -- Measured email long lines on encoded contentClaude Paroz
2016-11-10Fixed #27469 -- Prevented sending email to empty addressesClaude Paroz
2016-10-12Fixed #27333 -- Prevented BASE64 encoding in message.as_string() on Python 3Claude Paroz
2016-08-12Fixed #27007 -- Handled non-UTF-8 bytes objects for text/* attachments.Michael Schwarz
2016-07-08Fixed #26802 -- Prevented crash when attaching bytes as text messageClaude Paroz
2016-06-04Fixed #12666 -- Added EMAIL_USE_LOCALTIME setting.Anton I. Sipos
2016-05-10Fixed #26580 -- Updated references to obsolete RFC 2822.Vasiliy Faronov
2016-05-06Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of the...Sergei Maertens
2016-04-19Fixed #22561 -- Prevented too long lines in email messagesClaude Paroz
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2015-07-25Fixed #24623 -- Fixed EmailMessage.attach_file() with text files on Python 3.Konrad Świat
2015-07-20Replaced six.BytesIO with io.BytesIOTim Graham
2015-06-18Removed support for Python 3.3.Tim Graham
2015-03-13Fixed #24416 -- Added support for lazy email addresses.medmunds