mirror of https://github.com/django/django.git
[1.6.x] Decode mails using the message encoding.
Backport of bfe9052831
from master.
This commit is contained in:
parent
d18f99dfc7
commit
e99eeefe44
|
@ -14,10 +14,12 @@ class EmailBackend(BaseEmailBackend):
|
||||||
super(EmailBackend, self).__init__(*args, **kwargs)
|
super(EmailBackend, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
def write_message(self, message):
|
def write_message(self, message):
|
||||||
msg = message.message().as_bytes()
|
msg = message.message()
|
||||||
|
msg_data = msg.as_bytes()
|
||||||
if six.PY3:
|
if six.PY3:
|
||||||
msg = msg.decode()
|
charset = msg.get_charset().get_output_charset() if msg.get_charset() else 'utf-8'
|
||||||
self.stream.write('%s\n' % msg)
|
msg_data = msg_data.decode(charset)
|
||||||
|
self.stream.write('%s\n' % msg_data)
|
||||||
self.stream.write('-' * 79)
|
self.stream.write('-' * 79)
|
||||||
self.stream.write('\n')
|
self.stream.write('\n')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue