flask-emails
flask-emails copied to clipboard
Flask-Mail raises timeout where Flask-Emails not
I'm about to switch from Flask-Mail to Flask-Emails. However, when testing my code I'm not getting timeout error from Flask-Emails where Flask-Mail raises it correctly.
The reason why I would like to switch due to the configurable timeout (in elegant manner). See, https://github.com/mattupstate/flask-mail/issues/114. I also would like to use the flask-emails' API for inline images.
Can you show your mail settings?
The problem (or what cause confusion) seems to be that when EMAIL_USE_TLS = True
and the host does not support TLS/STARTTLS the return code and text are None.
...and the host does not support TLS
Do you mean the sender's host or the recipient's host?