Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix saving html emails that have quoted_printable transfer (#420)
* Fix saving html emails that have quoted_printable transfer See #419 * Quopri returns bytestring, convert to utf-8 * Update backends.py * Update backends.py I've been thinking about this. I don't like to step into a decoding loophole. Because according to the Django docs always an EmailMessage class gets to the backend (https://docs.djangoproject.com/en/4.1/topics/email/#email-backends), we could simplify the way we get the body and html_body without doing any decoding. * Update backends.py minor fix * Update backends.py Minor fix for no html_body
- Loading branch information