MailShake
MailShake copied to clipboard
Dramatically simplify sending emails from your python app.
I've met the issue with Microsoft SMTP server. If you make any message (pure text, or html) and send it via Microsoft SMTP, the message body is chopped out. I've...
If you create message with HTML body and long subject: ``` email_msg = EmailMessage( subject='Rather long subject ............................................................................', html='html message body' from_email='[email protected]', to='[email protected]' ) ``` It causes to error while...
It's missing a lock around the calls to `self.connection.sendmail(...)`.