1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Extracts inner method to process multiple content types.

This commit is contained in:
Ariel Gerardo Ríos 2014-09-01 15:31:13 -03:00
parent 6d73301f0d
commit c1bfc9b3a8

View file

@ -39,3 +39,34 @@ def convert_header_to_unicode(header):
DEFAULT_CHARSET,
)
return unicode(header, DEFAULT_CHARSET, 'replace')
def get_body_from_message(message, maintype, subtype):
"""
Fetchs the body message matching main/sub content type.
"""
body = six.text_type('')
for part in message.walk():
if part.get_content_maintype() == maintype and \
part.get_content_subtype() == subtype:
charset = part.get_content_charset()
this_part = part.get_payload(decode=True)
if charset:
this_part = this_part.decode(charset, 'replace')
try:
body += this_part
except ValueError:
# Since it did not declare a charset, and we
# *should* be 7-bit clean right now, let's assume it
# is ASCII.
body += this_part.decode('ascii', 'replace')
logger.warning(
'Error encountered while decoding text '
'payload from an incorrectly-constructed '
'e-mail; payload was converted to ASCII with '
'replacement, but some data may not be '
'represented as the sender intended.'
)
return body