You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on an app the uses django mailbox to poll an email and read in the messages to process them. I noticed that if the email is not base64 (Message.encoded = False) the message contents appear to be empty for eml, text, html, body and the Message.get_email_object() is also empty. Is there anyway to fix this? My polling / processing algorithm fails because of this because the software is based around the exact received timestamp that I get using the email object.
django mailbox version: 4.7.1
The text was updated successfully, but these errors were encountered:
This issue is actually caused by the same Python bug as #136. The patch added to that issue now manifests as an unparsed email, which is probably not ideal, as the email is fine...
I am working on an app the uses django mailbox to poll an email and read in the messages to process them. I noticed that if the email is not base64 (Message.encoded = False) the message contents appear to be empty for eml, text, html, body and the Message.get_email_object() is also empty. Is there anyway to fix this? My polling / processing algorithm fails because of this because the software is based around the exact received timestamp that I get using the email object.
django mailbox version: 4.7.1
The text was updated successfully, but these errors were encountered: