Python菜譜5:發(fā)送帶附件的郵件

2018-07-25 18:19 更新

我們平時(shí)需要使用 Python 發(fā)送各類郵件,這個(gè)需求怎么來(lái)實(shí)現(xiàn)?答案其實(shí)很簡(jiǎn)單,smtplib 和 email庫(kù)可以幫忙實(shí)現(xiàn)這個(gè)需求。smtplib 和 email 的組合可以用來(lái)發(fā)送各類郵件:普通文本,HTML 形式,帶附件,群發(fā)郵件,帶圖片的郵件等等。我們這里將會(huì)分幾節(jié)把發(fā)送郵件功能解釋完成。

smtplib 是 Python 用來(lái)發(fā)送郵件的模塊,email 是用來(lái)處理郵件消息。

發(fā)送帶附件的郵件是利用 email.mime.multipart 的 MIMEMultipart 以及 email.mime.image 的 MIMEImage,重點(diǎn)是構(gòu)造郵件頭信息:

import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

sender = '***'
receiver = '***'
subject = 'python email test'
smtpserver = 'smtp.163.com'
username = '***'
password = '***'

msgRoot = MIMEMultipart('mixed')
msgRoot['Subject'] = 'test message'

# 構(gòu)造附件
att = MIMEText(open('/Users/1.jpg', 'rb').read(), 'base64', 'utf-8')
att["Content-Type"] = 'application/octet-stream'
att["Content-Disposition"] = 'attachment; filename="1.jpg"'
msgRoot.attach(att)

smtp = smtplib.SMTP()
smtp.connect(smtpserver)
smtp.login(username, password)
smtp.sendmail(sender, receiver, msgRoot.as_string())
smtp.quit()

注意:這里的代碼并沒(méi)有把異常處理加入,需要讀者自己處理異常。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)