index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
core
/
mail
/
backends
/
smtp.py
Age
Commit message (
Expand
)
Author
2025-07-25
Fixed #35581 -- Updated django.core.mail to Python's modern email API.
Mike Edmunds
2024-01-26
Applied Black's 2024 stable style.
Mariusz Felisiak
2023-03-14
Improved connection clean-up for SMTP backend.
Carlton Gibson
2023-03-06
Fixed #34386 -- Made SMTP backend load default system root CA certificates by...
Dmitriy Sintsov
2022-11-16
Refs #34118 -- Used smtplib's context parameter instead of keyfile and certfile.
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2019-01-28
Fixed #30137 -- Replaced OSError aliases with the canonical OSError.
Jon Dufresne
2018-12-26
Fixed #30058 -- Made SMTP EmailBackend.send_messages() return 0 for empty/err...
Denis Stebunov
2017-02-21
Refs #27656 -- Updated django.core docstring verbs according to PEP 257.
Anton Samarchyan
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-20
Refs #23919 -- Removed unneeded force_str calls
Claude Paroz
2016-12-23
Refs #26487 -- Removed unneeded ehlo() calls in SMTP backend.
Tim Graham
2016-10-05
Removed unused variable in django/core/mail/backends/smtp.py.
Tim Graham
2016-09-27
Fixed #27210 -- Allowed SMTPBackend to fail silently on a socket connection e...
Vesteinn Snaebjarnarson
2016-09-21
Fixed #26210 -- Prevented SMTP backend from trying to send mail after a conne...
levental
2016-08-31
Fixed #27131 -- Passed proper string type to SMTP connection login
Claude Paroz
2016-05-06
Fixed #25986 -- Fixed crash sending email with non-ASCII in local part of the...
Sergei Maertens
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-10-12
Fixed #23063 -- Convert \n and \r to \r\n when using the SMTP backend as per ...
Florian Apolloner
2014-09-13
Fixed #23461 -- Added EMAIL_TIMEOUT setting
José Padilla
2014-09-10
Fixed #20743 -- Added support for keyfile/certfile in SMTP connections.
Andi Albrecht
2014-01-12
Undelete the `return True` removed in 4e0a2fe.
Marc Tamlyn
2013-12-28
Introduced as_bytes for SafeMIMEText (and other SafeMIME-classes).
Florian Apolloner
2013-10-25
Undelete the login() call inadvertantly removed in 4e0a2fe59c
Claude Paroz
2013-10-24
Fixed #21271 -- Added timeout parameter to SMTP EmailBackend.
SusanTan
2013-10-05
Fixed #21189: Cleaned up usage of bare except clauses.
Baptiste Mispelon
2013-07-11
Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backend
Claude Paroz
2013-01-03
Replaced deprecated sslerror by ssl.SSLError
Claude Paroz
2013-01-03
Fixed #19382 -- Stopped smtp backend raising exception when already closed
Claude Paroz
2013-01-03
Fixed #19134 -- Allowed closing smtp backend when the server is stopped
Claude Paroz
2012-11-14
Fixed #19186 -- Fixed sending mail with unicode content on Python 3
Claude Paroz
2012-06-23
Switch to using context managers for acquiring and releasing locks.
Alex Gaynor
2011-07-03
Fixed #15750 -- Handle empty mail server credentials gracefully. Thanks, Lean...
Jannis Leidel
2011-01-15
Fixed #15042 -- Ensured that email addresses without a domain can still be ma...
Russell Keith-Magee
2010-12-21
Fixed #14301 -- Further refine changes made in r14216 to support non-ASCII ch...
Jannis Leidel
2009-11-04
Fixed #11849 -- Corrected handling of use_tls in the SMTP mail handler. Thank...
Russell Keith-Magee
2009-11-03
Fixed #10355 -- Added an API for pluggable e-mail backends.
Russell Keith-Magee