共计 1788 个字符,预计需要花费 5 分钟才能阅读完成。
一、邮件发送 flask-mail 说明
是一个邮件发送的扩展库,使用非常方便
二、安装
pip install flask-mail
三、配置
一定要写在创建 Mail 对象之前,否则将不起作用
# 导入类库
from flask_mail import Mail, Message
# 邮箱服务器
app.config['MAIL_SERVER'] = os.environ.get('MAIL_SERVER', 'smtp.163.com')
# 用户名
app.config['MAIL_USERNAME'] = os.environ.get('MAIL_USERNAME', '15611833906@163.com')
# 密码,密码有时是授权码
app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_PASSWORD', '***')
# 创建对象
mail = Mail(app)
四、发送邮件
@app.route('/')
def index():
# 创建邮件对象
msg = Message(subject='账户激活', recipients=['793390457@qq.com'],
sender=app.config['MAIL_USERNAME'])
# 浏览器打开邮件显示内容
msg.html = '<h1> 你好,Mr Lucky,激活请点击右边链接 </h1>'
# 终端接受邮件显示内容
msg.body = '你好,Mr Lucky,激活请点击右边链接'
# 发送邮件
mail.send(message=msg)
return '邮件已发送'
五、封装发送邮件函数
# 封装函数,发送邮件
def send_mail(to, subject, template, **kwarg):
# 创建邮件对象
msg = Message(subject=subject, recipients=[to],
sender=app.config['MAIL_USERNAME'])
# 浏览器打开邮件显示内容
msg.html = render_template(template+'.html', **kwargs)
# 终端接受邮件显示内容
msg.body = render_template(template+'.txt', **kwargs)
# 发送邮件
mail.send(message=msg)
调用邮件发送函数:
@app.route('/')
def index():
send_mail('793390457@qq.com', '找回密码', 'activate',
username='lucky')
return '邮件已发送'
六、异步发送邮件
# 异步发送邮件
def async_send_mail(app, msg):
# 发送邮件需要程序上下文,新的线程没有上下文,需要手动创建
with app.app_context():
# 发送邮件
mail.send(message=msg)
# 封装函数,发送邮件
def send_mail(to, subject, template, **kwargs):
# 根据 current_app 获取当前的实例
app = current_app._get_current_object()
# 创建邮件对象
msg = Message(subject=subject, recipients=[to], sender=app.config['MAIL_USERNAME'])
# 浏览器打开邮件显示内容
msg.html = render_template(template+'.html', **kwargs)
# 终端接受邮件显示内容
msg.body = render_template(template+'.txt', **kwargs)
# 创建线程
thr = Thread(target=async_send_mail, args=[app, msg])
# 启动线程
thr.start()
return thr
七、扩展
环境变量:好处是可以避免隐私的信息公布于众
-
windows 配置
设置:set NAME=xiaoming 获取:set NAME
-
linux 配置
导出:export NAME=lucky 获取:echo $NAME
-
代码获取
import os app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY') or '123456' os.environ.get('NAME', 'default')
正文完
星哥玩云-微信公众号