On Thu, 2008-04-17 at 11:52 -0600, leonel wrote:
> Hello
> 
> I need to send mail  and I'm using  send_mail from django.core.mail
> All works but the mail gets  base64 encoded
> 
> Am I missing some configuration so the send_mail sends the mail not encoded

A few more details are needed here.

(1) What version of Django are you using (the mail infrastructure has
changed a bit between 0.96 and trunk, from memory)?

(2) What type of content are you sending? Email data must normally be
7-bit ASCII, so if you're trying to send stuff outside that range,
encoding must occur.

(3) Why is this even an issue? Mail clients know how to decode base64
encoded email. Any program that consumes email must be able to do the
same, since it's part of the email standards. It shouldn't really make a
difference anywhere. So what's the use-case that requires this?

Regards,
Malcolm

-- 
Experience is something you don't get until just after you need it. 
http://www.pointy-stick.com/blog/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to