Python Flask异步发送邮件实现方法解析

作者:viewts 时间:2023-08-15 04:29:12 

第一步,修改工厂函数,配置邮件参数


from flask import Flask
from config import Config
from flask_sqlalchemy import SQLAlchemy
from flask_mail import Mail

db = 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_template
from flask_mail import Message
from threading import Thread
from main import mail

def 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()方法拿到应用程序上下文。特此记录一下

来源:https://www.cnblogs.com/viewts/p/13274436.html

标签:Python,Flask,异步,邮件
0
投稿

猜你喜欢

  • python创建线程示例

    2021-07-21 00:20:37
  • python中virtualenvwrapper安装与使用

    2022-07-28 03:21:52
  • python爬取淘宝商品销量信息

    2023-06-01 14:59:03
  • Python OpenCV一个窗口中显示多幅图像

    2023-12-09 19:38:04
  • SQL Server中查看对象定义的SQL语句

    2024-01-18 05:52:43
  • 更正确的asp冒泡排序

    2024-04-22 13:04:10
  • js插入flash可防止虚线框激活

    2009-03-13 13:31:00
  • Systemd 入门实战教程

    2022-10-29 15:52:44
  • 程序员鼓励师插件Rainbow Fart(彩虹屁)

    2023-02-11 23:02:40
  • Python私有属性私有方法应用实例解析

    2022-11-08 05:09:03
  • 详解Python中的文件操作

    2022-08-26 03:35:18
  • 装了 Access 2003 安全更新 (KB981716) 之后 Access 打不开

    2010-12-09 19:59:00
  • 浅谈python for循环的巧妙运用(迭代、列表生成式)

    2023-04-15 02:17:29
  • 使用Spring AOP实现MySQL数据库读写分离案例分析(附demo)

    2024-01-16 04:47:03
  • 详解tensorflow载入数据的三种方式

    2023-07-22 19:35:56
  • Python中类的继承代码实例

    2023-11-26 05:29:14
  • php统计数组不同元素的个数的实例方法

    2023-06-11 23:04:59
  • Python使用正则表达式获取网页中所需要的信息

    2023-04-08 17:13:33
  • react+django清除浏览器缓存的几种方法小结

    2022-10-05 03:07:45
  • python的迭代器与生成器实例详解

    2021-06-21 15:36:41
  • asp之家 网络编程 m.aspxhome.com