1 Star 0 Fork 0

XINC/python_项目

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
flaskmail.py 899 Bytes
一键复制 编辑 原始数据 按行查看 历史
XINC 提交于 2017-06-30 11:39 . 邮件发送
#coding:utf-8
from flask import Flask as fl
from flask_mail import Mail,Message
import os
app = fl(__name__)
app.config['MAIL_SERVER']='smtp.qq.com'
app.config['MAIL_PORT'] = 25
app.config['MAIL_USE_TLS'] = True
app.config['MAIL_USERNAME'] = os.environ.get('MAIL_USERNAME') or '1084540622@qq.com' #发送者
app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_PASSWORD') or 'ipwdpxekalrlgaaa' #smtp验证码
mail = Mail(app)
@app.route('/')
def index():
#1):标题 sender:发送者 recipients:接受者
# html:发送内容
# 发送附件或图片参考:http://blog.csdn.net/werewolf_st/article/details/46805429
msg = Message('hi',sender='1084540622@qq.com',recipients=['506535141@qq.com','xinchao3213@163.com'])
msg.html = '<b>hello </b>'
mail.send(msg)
return '<h4>ok!</h4>'
if __name__ == '__main__':
app.run(host='127.0.0.1',debug=True)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/Shixinchao/python_xiangmu.git
git@gitee.com:Shixinchao/python_xiangmu.git
Shixinchao
python_xiangmu
python_项目
master

搜索帮助