When I try to send email using flask-security it takes a while and then fails with following error on the screen
Something went wrong ! Server timed out or sent incomplete response
Click here to try again. (Perhaps you meant to use HTTPS instead of HTTP?)
If that still doesn't work, please Issue a bug report.
My flask settings are:
# Flask Security Configuration
SECURITY_CONFIRMABLE = True
SECURITY_REGISTERABLE = True
SECURITY_RECOVERABLE = True
SECURITY_TRACKABLE = True
SECURITY_PASSWORD_HASH = 'bcrypt'
SECURITY_PASSWORD_SALT = '4f6d0251-7927-45e5-a211-8b8411deca22'
SECRET_KEY = 'longtextlongtext'
MAIL_SERVER = 'smtp.zoho.com'
MAIL_PORT = 465
MAIL_USE_SSL = True
MAIL_USERNAME = 'xxxxx'
MAIL_PASSWORD = 'xxxxx'
Can someone please help?