使用Flask-Mail发送QQ邮件

来源:互联网 发布:淘宝客服怎么做兼职 编辑:程序博客网 时间:2024/05/22 00:16
#coding:utf-8
import osfrom flask import Flaskfrom flask_mail import Mailfrom flask_script import Managerapp = Flask(__name__)manager = Manager(app)app.config['MAIL_SERVER'] = 'smtp.qq.com'app.config['MAIL_PORT'] = 25app.config['MAIL_USE_TLS'] = Trueapp.config['MAIL_PASSWORD'] = '授权码'app.config['MAIL_USERNAME'] = '123456789@qq.com'mail = Mail(app)if __name__ == '__main__':    manager.run()    #app.run()



在终端中运行:"python 文件名.py shell "

from flask_mail import Messagefrom mail_1 import mailmsg = Message('test subject', sender='123456789@qq.com', recipients=['123456789@qq.com'])msg.body = 'text body'msg.html = '<b>HTML</b> body'with app.app_context():  mail.send(msg)


原创粉丝点击