Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/core/mail/message.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #24623 -- Fixed EmailMessage.attach_file() with tex...Konrad Świat2015-07-251-3/+29
* Replaced six.BytesIO with io.BytesIOTim Graham2015-07-201-1/+2
* Removed support for Python 3.3.Tim Graham2015-06-181-8/+1
* Fixed #24416 -- Added support for lazy email addresses.medmunds2015-03-131-4/+4
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-8/+8
* Removed compatibility with Python 3.2.Tim Graham2015-01-171-6/+1
* Fixed #23910 -- Added reply_to parameter to EmailMessageMartin Blech2014-11-281-3/+13
* Fixed #23924 -- Made EmailMessage raise TypeError for typ...Martin Blech2014-11-281-3/+6
* Removed workaround for lack of os.getpid() in Jython.Tim Graham2014-11-241-12/+14
* Fixed #13694 -- Made SafeMIMEText's constructor compatibl...Berker Peksag2014-11-241-8/+11
* Fixed #23063 -- Convert \n and \r to \r\n when using the ...Florian Apolloner2014-10-121-4/+7
* Replaced set([foo, ...]) by {foo, ...} literals. Refs PR ...Thomas Chaumeny2014-09-281-2/+2
* Updated comment about Python issueClaude Paroz2014-09-271-1/+1
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+3
* Fixed several typos in DjangoAlex Gaynor2014-05-291-1/+1
* Introduced as_bytes for SafeMIMEText (and other SafeMIME-...Florian Apolloner2013-12-281-15/+18
* Worked around a bug in python 3.3.3. Refs #21093Florian Apolloner2013-12-281-1/+8
* Fixed #21093 -- Ensured that mails are not base64 encoded...Florian Apolloner2013-12-281-41/+30
* Used "is" for comparisons with None.Tim Graham2013-10-101-1/+2
* Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin2013-09-021-1/+1
* Fixed #12422 -- Don't override global email charset behav...Ramiro Morales2013-08-211-2/+12
* Fixed #18967 -- Don't base64-encode message/rfc822 attach...Ramiro Morales2013-08-211-3/+41
* Fixed #20746 -- Removed Python 2.6 specific code/docsTim Graham2013-07-141-4/+0
* Fixed #19107 -- Workarounded message-encoding bug on Pyth...Claude Paroz2012-10-111-0/+4
* [py3] Workarounded a Python bug in mail header encodingClaude Paroz2012-08-171-1/+6
* [py3] Fixed mail tests with Python 3Claude Paroz2012-08-091-17/+17
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-6/+6
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-4/+5
* Fixed #18269 -- Applied unicode_literals for Python 3 com...Claude Paroz2012-06-071-3/+5
* Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz2012-05-051-6/+3
* Made more extensive usage of context managers with open.Claude Paroz2012-05-051-1/+2
* Made email attachment handling code accept non-ASCII file...Ramiro Morales2012-01-151-0/+4
* Fixed #17444 -- Made it possible to customize the 'To' he...Aymeric Augustin2011-12-301-2/+2
* Fixed a bunch of imports of the email stdlib module now t...Jannis Leidel2011-09-091-6/+6
* Fixed #11212 -- Stopped using quoted-printable encoding f...Jannis Leidel2011-05-071-1/+1
* Removed a bunch more Python 2.4 workarounds now that we d...Adrian Holovaty2011-03-281-4/+1
* Fixed #15520 -- Fixed incompatibility with email module s...Ramiro Morales2011-02-281-1/+4
* Fixed #13433 -- Changed default behavior of Django email ...Ramiro Morales2011-02-281-2/+33
* Fixed #15042 -- Ensured that email addresses without a do...Russell Keith-Magee2011-01-151-17/+48
* Fixed #14301 -- Handle email validation gracefully with e...Jannis Leidel2010-10-141-1/+5
* Fixed #7722 - added support for CC in EmailMessage.Luke Plant2010-10-081-5/+13
* Fixed #13259 -- Ensure that multiple calls to message() d...Russell Keith-Magee2010-04-011-1/+3
* Fixed #6918: Adjusted the test in r12683 to more specific...Karen Tracey2010-03-061-1/+1
* Fixed #6918, #12791: If an email message has an encoding,...Karen Tracey2010-03-051-14/+24
* Fixed #11144 -- When a to/from/cc header contains unicode...Russell Keith-Magee2009-11-041-3/+2
* Fixed #10355 -- Added an API for pluggable e-mail backends.Russell Keith-Magee2009-11-031-0/+274