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
Currently aiosmtpd uses email.message.Message to represent a received email. Since version 3.6 (I believe) the preferred class according to python documentation is email.message.EmailMessage.
Making this change would bring aiosmtpd in line with the supported versions of python (currently >= 3.7). It would, however, be a breaking change.
My quick look at the code suggests that the only changes needed to accomplish this would be modifications to:
handlers.Message
handlers.Mailbox
The text was updated successfully, but these errors were encountered:
Currently aiosmtpd uses
email.message.Message
to represent a received email. Since version 3.6 (I believe) the preferred class according to python documentation isemail.message.EmailMessage
.Making this change would bring aiosmtpd in line with the supported versions of python (currently >= 3.7). It would, however, be a breaking change.
My quick look at the code suggests that the only changes needed to accomplish this would be modifications to:
handlers.Message
handlers.Mailbox
The text was updated successfully, but these errors were encountered: