Decode mails using the message encoding.
This commit is contained in:
parent
c988745cca
commit
bfe9052831
|
@ -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')
|
||||
|
||||
|
|
Loading…
Reference in New Issue