Python Flask异步发送邮件实现方法解析
第一步,修改工厂函数,配置邮件参数
from flask import Flaskfrom config import Configfrom flask_sqlalchemy import SQLAlchemyfrom flask_mail import Maildb = SQLAlchemy()mail = Mail()def create_app(): app = Flask(__name__) app.config.from_object(Config) db.init_app(app) mail.init_app(app) from .controller import controller app.register_blueprint(controller) return app
第二步,新建一个线程来发送邮件
from flask import current_app, render_templatefrom flask_mail import Messagefrom threading import Threadfrom main import maildef send_async_email(app, msg): with app.app_context(): mail.send(msg)def send_email(to, subject, template = ’index’, **kwargs): app = current_app._get_current_object() msg = Message(subject, sender = app.config[’MAIL_USERNAME’], recipients = [to]) msg.html = render_template(’{}.html’.format(template), **kwargs) thr = Thread(target = send_async_email, args = [app, msg]) thr.start() return thr
从current_app的_get_current_object()方法拿到应用程序上下文。特此记录一下
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。
相关文章:
1. python实现读取类别频数数据画水平条形图案例2. python中PyQuery库用法分享3. python操作数据库获取结果之fetchone和fetchall的区别说明4. Python编写nmap扫描工具5. python 爬取哔哩哔哩up主信息和投稿视频6. JSP+Servlet实现文件上传到服务器功能7. CSS3实现动态翻牌效果 仿百度贴吧3D翻牌一次动画特效8. ASP.NET MVC前台动态添加文本框并在后台使用FormCollection接收值9. python将下载到本地m3u8视频合成MP4的代码详解10. php使用正则验证密码字段的复杂强度原理详细讲解 原创
