summaryrefslogtreecommitdiff
path: root/django/core/mail
AgeCommit message (Expand)Author
2014-09-10Fixed #20743 -- Added support for keyfile/certfile in SMTP connections.Andi Albrecht
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-05-28Fixed several typos in DjangoAlex Gaynor
2014-03-31Fixed #22327 -- Turned BaseEmailBackend into a context managerDaniel Neuhäuser
2014-02-08Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag
2014-01-12Undelete the `return True` removed in 4e0a2fe.Marc Tamlyn
2013-12-30Decode mails using the message encoding.Florian Apolloner
2013-12-30Changed console and filebackend to use msg.as_bytes to output the data as it ...Florian Apolloner
2013-12-28Introduced as_bytes for SafeMIMEText (and other SafeMIME-classes).Florian Apolloner
2013-12-28Worked around a bug in python 3.3.3. Refs #21093Florian Apolloner
2013-12-28Fixed #21093 -- Ensured that mails are not base64 encoded on python 3.3.3+.Florian Apolloner
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-25Undelete the login() call inadvertantly removed in 4e0a2fe59cClaude Paroz
2013-10-24Fixed #21271 -- Added timeout parameter to SMTP EmailBackend.SusanTan
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-10Whitespace cleanup.Tim Graham
2013-10-10Used "is" for comparisons with None.Tim Graham
2013-10-05Fixed #21189: Cleaned up usage of bare except clauses.Baptiste Mispelon
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-02Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-08-21Fixed #12422 -- Don't override global email charset behavior for utf-8.Ramiro Morales
2013-08-20Fixed #18967 -- Don't base64-encode message/rfc822 attachments.Ramiro Morales
2013-07-29Fixed #20817 -- Added html_message parameter to django.core.mail.send_mail()Justin Michalicek
2013-07-14Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham
2013-07-11Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backendClaude Paroz
2013-04-03Adds generators support for email backends that do not support it.Brendon Crawford
2013-02-04Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz
2013-01-03Replaced deprecated sslerror by ssl.SSLErrorClaude Paroz
2013-01-03Fixed #19382 -- Stopped smtp backend raising exception when already closedClaude Paroz
2013-01-03Fixed #19134 -- Allowed closing smtp backend when the server is stoppedClaude Paroz
2012-11-14Fixed #19186 -- Fixed sending mail with unicode content on Python 3Claude Paroz
2012-10-11Fixed #19107 -- Workarounded message-encoding bug on Python < 2.6.6Claude Paroz
2012-09-22Fixed #18861 -- Triggered message validation with locmem email backendClaude Paroz
2012-09-07Removed many uses of bare "except:", which were either going to a) silence re...Alex Gaynor
2012-08-17[py3] Workarounded a Python bug in mail header encodingClaude Paroz
2012-08-09[py3] Fixed mail tests with Python 3Claude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-06-23Switch to using context managers for acquiring and releasing locks.Alex Gaynor
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-05-05Made more extensive usage of context managers with open.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-29Fixed #17811 -- Added connection parameter in call to EmailMessage from send_...Claude Paroz
2012-01-15Made email attachment handling code accept non-ASCII filenames.Ramiro Morales
2011-12-30Fixed #17444 -- Made it possible to customize the 'To' header in emails.Aymeric Augustin
2011-09-10Remove this deprecated alias.Alex Gaynor
2011-09-09Fixed a bunch of imports of the email stdlib module now that we are on Python...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel