《flask Web 開發》讀書筆記 & chapter6
chapter 2 - chapter 3 - chapter 4 - chapter 5 - 原始碼
概念剖析-flask電子郵件操作
python 的郵件支援
- python 標準庫中的
smtplib
包可以用於傳送電子郵件Flask-Mail
擴充套件包裝了smtplib
Flask-Mail
的電子郵件支援
- 安裝
pip install flask-mail
若不配置伺服器,
Flask-Mail
會連線localhost
上的埠 25,傳送郵件
Flask-Mail SMTP伺服器的配置
配置 | 預設值 | 說明 |
---|---|---|
MAIL_SERVER |
localhost |
電子郵件主機名或IP地址 |
MAIL_PORT |
25 | 電子郵件伺服器埠 |
MAIL_USE_TLS |
False |
啟用傳輸層安全協議(Transport Layer Security) |
MAIL_USE_SSL |
False |
啟用安全套接層(Secure Sockets Layer) |
MAIL_USERNAME |
None |
郵件賬戶的賬戶名 |
MAIL_PASSWORD |
None |
郵件賬戶的密碼 |
126郵箱的配置
Flask-mail測試和遇到的問題
聊聊HTTPS和SSL/TLS協議
126郵箱的伺服器主機名smtp.126.com
,非SSL埠號25
,SSL埠號 465
,使用前需要配置客戶端授權密碼
from flask_mail import Mail, Message
...
# 設定郵件
app.config['MAIL_SERVER'] = 'smtp.126.com'
app.config['MAIL_PORT'] = 25
app.config['MAIL_USERNAME'] = os.environ.get('MAIL_126_USERNAME')
app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_126_PASSWORD')
# 匯入郵件
mail = Mail(app)
...
# 路由 /mail>
@app.route('/mail')
def mail_test():
msg = Message('test subject', sender='發件人@126.com', recipients=['收件人列表@hust.edu.cn'])
msg.body = 'test body'
msg.html = '<b>HTML</b> body'
mail.send(msg)
return '<h1> hava send the message </h1>'
git add. git commit -m "flask mail demo"
,git tag 6a
模板渲染郵件
hello.py
檔案中
from flask_mail import Mail, Message
...
# 設定郵件
app.config['MAIL_SERVER'] = 'smtp.126.com'
app.config['MAIL_PORT'] = 25
app.config['MAIL_USERNAME'] = os.environ.get('MAIL_126_USERNAME')
app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_126_PASSWORD')
# 設定管理員郵箱
app.config['FLASK_ADMIN'] = os.environ.get('FLASK_ADMIN')
# 設定 郵件主題字首
app.config['FLASK_MAIL_SUBJECT_PREFIX'] = '[Flask]'
# 設定 發件人名稱,此處126郵箱要求發件人名稱與賬戶名一致,此處設定無效
app.config['FLASK_MAIL_SENDER'] = 'Flasky Admin <flasky@example.com>'
# 匯入郵件
mail = Mail(app)
...
# 發件函式
def send_mail( to, subject, template, **kwargs):
msg = Message( app.config['FLASK_MAIL_SUBJECT_PREFIX'] + subject, sender = app.config['MAIL_USERNAME'], recipients=[to] )
# jinja2 同樣能夠渲染 txt 檔案
msg.body = render_template( template + '.txt', **kwargs )
# jinja2 渲染 html 檔案
msg.html = render_template( template + '.html', **kwargs )
mail.send(msg)
...
# 路由 index
@app.route('/', methods=['GET', 'POST'])
def index():
form = NameForm()
if form.validate_on_submit():
# 查詢使用者資訊
user = User.query.filter_by( username=form.name.data ).first()
# 記錄新使用者
if user is None:
user = User( username = form.name.data)
# add 到 session
db.session.add(user)
session['known'] = False
# 發現新使用者,郵件通知管理員
if app.config['FLASK_ADMIN']:
send_mail(app.config['FLASK_ADMIN'], 'New User', 'mail/new_user', user=user )
else:
session['known'] = True
session['name'] = form.name.data
return redirect( url_for('index'))
return render_template('index.html', form=form, name=session.get('name'), known=session.get('known', False))
設定管理員郵箱環境變數,
set FLASK_ADMIN=xxx@xx.com
模板檔案:'$templates/mail/new_user.txt
':User {{ user.username }} has joined.
模板檔案:'$templates/mail/new_user.html
':User <b>{{ user.username }}</b> has joined.
git add. git commit -m "flask mail with template"
,git tag 6b
非同步傳送郵件
mail.send() 函式傳送測試郵件時停滯了幾秒鐘,這個過程中瀏覽器無響應,為了避免不必要的延遲,將傳送電子郵件的函式移到後臺執行緒中。
from threading import Thread
# 執行緒的執行函式
def send_async_email(app, msg):
# flsk 上下文的概念
with app.app_context():
mail.send(msg)
def send_mail( to, subject, template, **kwargs):
msg = Message( app.config['FLASK_MAIL_SUBJECT_PREFIX'] + subject, sender = app.config['MAIL_USERNAME'], 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
當程式需要傳送大量的電子郵件,可以將執行 send_asyc_email()
函式的操作發給 Celery
任務佇列
git add. git commit -m "flask sync mail with template"
,git tag 6c
附錄
cmd環境變數的設定
相關文章
- 《Flask Web開發》讀書筆記【Windows環境】FlaskWeb筆記Windows
- flask讀書筆記Flask筆記
- 《Web API的設計與開發》讀書筆記WebAPI筆記
- 《Web前端開發修煉之道》-讀書筆記CSS部分Web前端筆記CSS
- 敏捷開發讀書筆記——隨筆敏捷筆記
- Flask 原始碼閱讀筆記 開篇Flask原始碼筆記
- 《Node.js開發指南》讀書筆記Node.js筆記
- 《白帽子講web安全》讀書筆記Web筆記
- 《Flask Web開發:基於Python的Web應用開發實戰》學習筆記(二)FlaskWebPython筆記
- <Laravel 開發環境部署>讀書筆記----常用指令Laravel開發環境筆記
- 《深入核心的敏捷開發》讀書筆記(2)敏捷筆記
- 《軟體開發本質論》讀書筆記筆記
- 《寫給大家看的web設計書》讀書筆記Web筆記
- 《高效能iOS應用開發》讀書筆記iOS筆記
- 讀書筆記:高效能PHP應用開發筆記PHP
- 軟體安全開發生命週期讀書筆記筆記
- 讀書筆記...筆記
- 讀書筆記筆記
- 《讀書與做人》讀書筆記筆記
- Flask web開發(3):模板FlaskWeb
- 《python專案開發案例集錦》讀書筆記Python筆記
- Cucumber讀書筆記筆記
- 散文讀書筆記筆記
- HTTP 讀書筆記HTTP筆記
- CoreJava讀書筆記-------Java筆記
- Vue讀書筆記Vue筆記
- MONGODB 讀書筆記MongoDB筆記
- Qt讀書筆記QT筆記
- Node讀書筆記筆記
- SAP讀書筆記筆記
- YII讀書筆記筆記
- iptables 讀書筆記筆記
- Makefile 讀書筆記筆記
- mysql讀書筆記MySql筆記
- 鎖讀書筆記筆記
- dataguard讀書筆記筆記
- 讀書筆記3筆記
- 讀書筆記2筆記