Decode mails using the message encoding.

This commit is contained in:
Florian Apolloner 2013-12-30 23:54:12 +01:00
parent c988745cca
commit bfe9052831
1 changed files with 5 additions and 3 deletions

View File

@ -15,10 +15,12 @@ class EmailBackend(BaseEmailBackend):
super(EmailBackend, self).__init__(*args, **kwargs)
def write_message(self, message):
msg = message.message().as_bytes()
msg = message.message()
msg_data = msg.as_bytes()
if six.PY3:
msg = msg.decode()
self.stream.write('%s\n' % msg)
charset = msg.get_charset().get_output_charset() if msg.get_charset() else 'utf-8'
msg_data = msg_data.decode(charset)
self.stream.write('%s\n' % msg_data)
self.stream.write('-' * 79)
self.stream.write('\n')