RuntimeError:在应用程序上下文之外工作。烧瓶-邮件

时间:2020-09-18 07:33:38

标签: python python-3.x flask flask-mail

from flask import current_app as app
from flask import render_template
from threading import Thread
from flask_mail import Message



def send_async_email(app, msg):
    with app.app_context():
        mail.send(msg)

def send_email(to, subject, template, **kwargs):
    msg = Message(app.config['MAIL_SUBJECT_PREFIX'] + subject,
                  sender=app.config['MAIL_SENDER'], recipients=[to])
    # msg.body = render_template(template + '.txt', **kwargs)
    msg.html = render_template(template + '.html', **kwargs)
    thr = Thread(target=send_async_email, args=(app,msg))
    thr.start()
    return thr
    #mail.send(msg)

RuntimeError:在应用程序上下文之外工作。

这通常意味着您尝试使用所需的功能 以某种方式与当前应用程序对象交互。解决 为此,使用app.app_context()设置应用程序上下文。见 文档以获取更多信息。

我以为我已经创建了app_context,但是代码仍然显示运行时错误。请帮忙,谢谢。

1 个答案:

答案 0 :(得分:0)

app = current_app._get_current_object()
with app.app_context():
    pass
    # send email here

from main import app
with app.app_context():
    pass

# main.py
app = Flask(__name__)

_get_current_object():

返回当前对象。如果出于性能原因一次希望将真实对象放在代理后面,或者因为要将对象传递到不同的上下文,这将很有用。

current_app是Flask代理对象:

current_app = LocalProxy(_find_app)

您只能在当前线程中从current_app获取应用对象