summaryrefslogtreecommitdiff
path: root/django/core/mail/message.py
AgeCommit message (Expand)Author
2014-11-28Fixed #23910 -- Added reply_to parameter to EmailMessageMartin Blech
2014-11-27Fixed #23924 -- Made EmailMessage raise TypeError for type checksMartin Blech
2014-11-24Removed workaround for lack of os.getpid() in Jython.Tim Graham
2014-11-24Fixed #13694 -- Made SafeMIMEText's constructor compatible with MIMEText.Berker Peksag
2014-10-12Fixed #23063 -- Convert \n and \r to \r\n when using the SMTP backend as per ...Florian Apolloner
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-27Updated comment about Python issueClaude Paroz
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-05-28Fixed several typos in DjangoAlex Gaynor
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-10-10Used "is" for comparisons with None.Tim Graham
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-14Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham
2012-10-11Fixed #19107 -- Workarounded message-encoding bug on Python < 2.6.6Claude Paroz
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-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-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-09Fixed a bunch of imports of the email stdlib module now that we are on Python...Jannis Leidel
2011-05-07Fixed #11212 -- Stopped using quoted-printable encoding for mails with non-AS...Jannis Leidel
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-28Fixed #15520 -- Fixed incompatibility with email module shipped with Python 2...Ramiro Morales
2011-02-28Fixed #13433 -- Changed default behavior of Django email message wrappers to ...Ramiro Morales
2011-01-15Fixed #15042 -- Ensured that email addresses without a domain can still be ma...Russell Keith-Magee
2010-10-14Fixed #14301 -- Handle email validation gracefully with email addresses conta...Jannis Leidel
2010-10-07Fixed #7722 - added support for CC in EmailMessage.Luke Plant
2010-04-01Fixed #13259 -- Ensure that multiple calls to message() don't corrupt any ext...Russell Keith-Magee
2010-03-06Fixed #6918: Adjusted the test in r12683 to more specifically look for what i...Karen Tracey
2010-03-05Fixed #6918, #12791: If an email message has an encoding, actually use that e...Karen Tracey
2009-11-04Fixed #11144 -- When a to/from/cc header contains unicode, make sure the emai...Russell Keith-Magee
2009-11-03Fixed #10355 -- Added an API for pluggable e-mail backends.Russell Keith-Magee