from flask import Flask from flask_mail import Mail, Message app = Flask(__name__) app.config.update( #EMAIL SETTINGS MAIL_SERVER='smtp.qq.com', MAIL_PORT=465, MAIL_USE_SSL=True, MAIL_USERNAME = 'QQIDHere', MAIL_PASSWORD = 'QQPasswordHere' ) mail = Mail(app) @app.route("/") def index(): msg = Message(subject="Hello", sender='you@qq.com', recipients=['recipient@recipient_domain.com']) msg.html = "testing html" mail.send(msg) return '