Julien wrote:
I'm using EmailMessage to send a newsletter. It works fine except that some characters are escaped in the plain text version. For exemple, "é" becomes "é".
If you are using the django template engine to build the body of your emails, you can either use the 'safe' template variable filter {{variable|safe}} in the template, or there you do do the following in the code that builds the body:
body = render_to_string(template, { 'context': 'variables' } context_instance=Context(autoescape=False)) Regards Darryl
signature.asc
Description: OpenPGP digital signature