#11212: Don't encode emails with base64/qp
------------------------------+---------------------------------------------
Reporter: phr | Owner: nobody
Status: new | Milestone:
Component: django.core.mail | Version: SVN
Keywords: send_mail | Stage: Unreviewed
Has_patch: 1 |
------------------------------+---------------------------------------------
#3472 introduced a patch, which replaces base64 encoding with quoted-
printable.
Anyway, there's even better way to do get rid of unnecessary encoding:
{{{
from email import Charset
Charset.add_charset('utf-8',Charset.SHORTEST,None,'utf-8')
}}}
The above will set Content-Transfer-Encoding to 7bit or 8bit as needed -
exactly as Mutt or Thunderbird do
and completely solve the problem even for non-latin characters.
--
Ticket URL: <http://code.djangoproject.com/ticket/11212>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---