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

Adding get_text_body convenience method.

This commit is contained in:
Adam Coddington 2013-01-20 14:27:15 -08:00
parent 0a283e9ade
commit afa82b861c
4 changed files with 58 additions and 1 deletions

View file

@ -320,6 +320,21 @@ class Message(models.Model):
)
)
def get_text_body(self):
def get_body_from_message(message):
body = ''
if message.is_multipart():
for part in message.get_payload():
if part.get('content-type', '').split(';')[0] == 'text/plain':
body = body + get_body_from_message(part)
else:
body = body + message.get_payload()
return body
return get_body_from_message(
self.get_email_object()
)
def get_email_object(self):
return email.message_from_string(self.body)