예제 #1
0
def async_send_mail(app, msg):
    with app.app_context():
        mail.send(message=msg)
예제 #2
0
파일: email.py 프로젝트: farons/backup
def async_send_mail(app, msg):
    """
    获取文件上下文
    """
    with app.app_context():
        mail.send(message=msg)
예제 #3
0
def send_message_async(app, msg):
    with app.app_context():  #管理程序上下文
        mail.send(message=msg)
예제 #4
0
파일: email.py 프로젝트: FateGitHub/GZ
def async_send_mail(app, msg):
    # 使用新的线程发送邮件
    # 使用完了需要关闭
    with app.app_context():
        mail.send(msg)