1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-10 06:48:19 +02:00

office365 implementation

This commit is contained in:
Pietro Mingo 2022-07-29 16:01:30 +02:00
parent dca20e1e1c
commit ced6b0997b
3 changed files with 37 additions and 83 deletions

View file

@ -9,3 +9,8 @@ class EmailTransport:
message = email.message_from_bytes(contents)
return message
def get_email_from_string(self, contents):
message = email.message_from_string(contents)
return message