2 Star 1 Fork 0

Dodolxdl/flask-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_send_mail.py 294 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dodolxdl 提交于 2017-10-28 17:34 . 支持邮件发送————未完成
from app import application, mail
from config import ADMINS
from flask_mail import Message
msg = Message('test subject', sender=ADMINS[0], recipients=ADMINS)
msg.body = 'text body'
msg.html = '<b>HTML TEST</b>'
with application.app_context():
mail.send(msg)
print "sender sucussful!"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/dodolxdl/micro_stu_blog.git
git@gitee.com:dodolxdl/micro_stu_blog.git
dodolxdl
micro_stu_blog
flask-blog
master

搜索帮助