Python如何实现Flask异步发送邮件
这篇文章主要讲解了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()方法拿到应用程序上下文。特此记录一下
看完上述内容,是不是对Python如何实现Flask异步发送邮件有进一步的了解,如果还想学习更多内容,欢迎关注亿速云行业资讯频道。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。