#3472: Convince send_mail to not base64-encode the email
--------------------------------------------------------------+-------------
          Reporter:  Matthias Urlichs <[email protected]>  |         Owner:  
adrian           
            Status:  reopened                                 |     Milestone:  
                 
         Component:  django.core.mail                         |       Version:  
SVN              
        Resolution:                                           |      Keywords:  
base64, send_mail
             Stage:  Ready for checkin                        |     Has_patch:  
1                
        Needs_docs:  0                                        |   Needs_tests:  
0                
Needs_better_patch:  0                                        |  
--------------------------------------------------------------+-------------
Changes (by phr):

  * status:  closed => reopened
  * resolution:  fixed =>

Comment:

 BTW, there's even better way to avoid 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.

-- 
Ticket URL: <http://code.djangoproject.com/ticket/3472#comment:8>
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to