summaryrefslogtreecommitdiff
path: root/django/core/mail
Commit message (Expand)AuthorAgeFilesLines
* 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
* Doc'd send_email() behavior when from_email is None.Adrian D'Alessandro2020-04-301-0/+1
* Refs #29983 -- Added pathlib.Path support to the file email backend.Jon Dufresne2019-11-061-3/+0
* Corrected several typos in string literals and test names.Min ho Kim2019-08-071-1/+1
* Fixed #30608 -- Fixed non-unicode EmailMessage crash when domain name for loc...Chason Chaffin2019-07-031-1/+3
* Refs #30608 -- Added django.utils.encoding.punycode().Mariusz Felisiak2019-07-031-5/+2
* Fixed #30604 -- Made mail_admins()/mail_managers() raise ValueError if ADMINS...Hasan Ramezani2019-07-021-0/+4
* 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 #30147 -- Simplified directory creation with os.makedirs(..., exist_ok=...Jon Dufresne2019-01-311-10/+7
* Fixed #30137 -- Replaced OSError aliases with the canonical OSError.Jon Dufresne2019-01-281-2/+1
* Fixed #30058 -- Made SMTP EmailBackend.send_messages() return 0 for empty/err...Denis Stebunov2018-12-261-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 #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-061-1/+1
* Fixed #26344 -- Made EmailMessage include alternatives when the body is empty...Igor Tokarev2017-09-041-1/+1
* Sorted imports per isort 4.2.9.Tim Graham2017-06-011-2/+3
* 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-215-38/+37
* Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham2017-02-091-2/+2
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-3/+3
* 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-255-5/+5
* Refs #23919 -- Removed unneeded str() callsClaude Paroz2017-01-201-1/+1
* Refs #23919 -- Removed unneeded force_str callsClaude Paroz2017-01-201-2/+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-193-3/+3
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-3/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-182-7/+6
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-182-35/+17
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-182-4/+0
* Fixed #27696 -- Measured email long lines on encoded contentClaude Paroz2017-01-061-1/+4
* Refs #26487 -- Removed unneeded ehlo() calls in SMTP backend.Tim Graham2016-12-231-2/+0
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+1
* Fixed #27469 -- Prevented sending email to empty addressesClaude Paroz2016-11-101-1/+1
* Fixed #27368 -- Modifed BaseEmailBackend.__enter__() to close the connection ...Jon Dufresne2016-10-211-1/+5