Top "Flask-mail" questions

The Flask-Mail extension provides a simple interface to set up SMTP with your Flask application and to send messages from your views and scripts.

Configure Flask-Mail to use GMail

When I try to send an email using Flask-Mail to Gmail's SMTP server using the settings below, I get [Errno …

python flask gmail flask-mail
flask-mail gmail: connection refused

I'm getting the following error when I attempt to use flask-mail to send an email through my gmail account. error: […

python python-2.7 flask flask-mail
ImportError: No module named flask_mail

from flask_mail import Mail,Message from flask import Flask I am trying to mail but import error is occurring

flask importerror flask-mail
Connection refused when sending mail with Flask-Mail

I'm having trouble sending email with flask-mail ( http://pythonhosted.org/flask-mail/ ) from flask.ext.sqlalchemy import SQLAlchemy from flask import …

flask flask-mail
OSError: [WinError 10013] An attempt was made to access a socket in a way forbidden by its access permissions

I'm experimenting with the use of Huey as a cross platform task queue . I've found https://github.com/pjcunningham/flask-huey-example , …

python flask flask-mail python-huey
SMTPServerDisconnected: please run connect() first

I'm exploring flask and attempting to setup a simple web app with secure registration and sign in. I'm using flask-security …

python flask flask-security flask-mail
Sending a mail from Flask-Mail (SMTPSenderRefused 530)

The app configuration used in a Flask Mail application (following Miguel Grinberg Flask developlemt book) : app.config['MAIL_SERVER'] = 'smtp.…

python email flask smtp flask-mail