Python Flask異步發(fā)送郵件實現(xiàn)方法解析
第一步,修改工廠函數(shù),配置郵件參數(shù)
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
第二步,新建一個線程來發(fā)送郵件
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()方法拿到應用程序上下文。特此記錄一下
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關文章:
1. IntelliJ IDEA導入jar包的方法2. Python requests庫參數(shù)提交的注意事項總結3. javascript實現(xiàn)雪花飄落效果4. JavaScript中l(wèi)ayim之整合右鍵菜單的示例代碼5. python操作mysql、excel、pdf的示例6. 使用Python和百度語音識別生成視頻字幕的實現(xiàn)7. 詳談ajax返回數(shù)據(jù)成功 卻進入error的方法8. ASP基礎知識VBScript基本元素講解9. Gitlab CI-CD自動化部署SpringBoot項目的方法步驟10. vue-electron中修改表格內容并修改樣式
