Opened 17 years ago

Closed 17 years ago

Last modified 17 years ago

#5010 closed (duplicate)

non latin characters in django.core.mail don't work due to quoted-printable issue

Reported by: mitja.pagon@… Owned by: Adrian Holovaty
Component: Core (Mail) Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Non latin characters in mails, sent using django's built in mail class, don't display correctly. The problem seems to be in the 'Content-Transfer-Encoding' being set to 'quoted-printable' that doesn't support non latin characters. Even when DEFAULT_CHARSET is changed to someting other that 'utf-8', like 'ISO-8859-2' it still doesn't work, even thought, as I understand, non 'utf-8' messages should be base64 encoded.

Change History (2)

comment:1 by Simon G. <dev@…>, 17 years ago

Resolution: duplicate
Status: newclosed
Summary: non latin characters don't worknon latin characters in django.core.mail don't work due to quoted-printable issue

What version of django are you using? I thought this was fixed in [5143]?

comment:2 by anonymous, 17 years ago

I'm using the latest SVN version?

5143 doens't solve the issue, but more likely causes the problem.

Note: See TracTickets for help on using tickets.
Back to Top