久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

Python Flask異步發送郵件實現方法解析

瀏覽:20日期:2022-07-15 14:23:25

第一步,修改工廠函數,配置郵件參數

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 編程
相關文章:
主站蜘蛛池模板: 济宁市| 醴陵市| 孟州市| 赞皇县| 电白县| 东乡| 渝中区| 延川县| 高碑店市| 朝阳市| 绵竹市| 醴陵市| 孟村| 彭山县| 枣强县| 满洲里市| 西畴县| 四子王旗| 巩义市| 城口县| 浏阳市| 贺兰县| 凤庆县| 凤山市| 三原县| 鹤庆县| 兴和县| 本溪| 平阴县| 英山县| 台州市| 鄯善县| 乐亭县| 金塔县| 新邵县| 碌曲县| 高邑县| 赤城县| 延安市| 金昌市| 黔西县|