簡單郵件傳輸協議(SMTP)是一種協議,用於在郵件服務器之間發送電子郵件和路由電子郵件。html
Python提供smtplib
模塊,該模塊定義了一個SMTP客戶端會話對象,可用於使用SMTP或ESMTP偵聽器守護程序向任何互聯網機器發送郵件。python
這是一個簡單的語法,用來建立一個SMTP對象,稍後將演示如何用它來發送電子郵件 -c#
import smtplib smtpObj = smtplib.SMTP( [host [, port [, local_hostname]]] )
這裏是上面語法的參數細節 -服務器
host - 這是運行SMTP服務器的主機。能夠指定主機的IP地址或相似yiibai.com
的域名。這是一個可選參數。網絡
port - 若是提供主機參數,則須要指定SMTP服務器正在偵聽的端口。一般這個端口默認值是:25
。app
local_hostname - 若是SMTP服務器在本地計算機上運行,那麼能夠只指定localhost
選項。dom
SMTP對象有一個sendmail
的實例方法,該方法一般用於執行郵件發送的工做。它須要三個參數 -yii
sender - 具備發件人地址的字符串。測試
receivers - 字符串列表,每一個收件人一個。ui
message - 做爲格式如在各類RFC中指定的字符串。
示例
如下是使用Python腳本發送一封電子郵件的簡單方法 -
#!/usr/bin/python3import smtplib sender = 'from@fromdomain.com'receivers = ['to@todomain.com'] message = """From: From Person <from@fromdomain.com> To: To Person <to@todomain.com> Subject: SMTP e-mail test This is a test e-mail message. """try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receivers, message) print "Successfully sent email"except SMTPException: print "Error: unable to send email"
在這裏,已經發送了一封基本的電子郵件,使用三重引號,請注意正確格式化標題。一封電子郵件須要一個From
,To
和一個Subject
標題,與電子郵件的正文與空白行分開。
要發送郵件,使用smtpObj
鏈接到本地機器上的SMTP服務器。 而後使用sendmail
方法以及消息,從地址和目標地址做爲參數(即便來自和地址在電子郵件自己內,這些並不老是用於路由郵件)。
若是沒有在本地計算機上運行SMTP服務器,則可使用smtplib
客戶端與遠程SMTP服務器進行通訊。除非您使用網絡郵件服務(如gmail或Yahoo! Mail),不然您的電子郵件提供商必須向您提供能夠提供的郵件服務器詳細信息。以騰訊QQ郵箱爲例,具體以下:
mail = smtplib.SMTP('smtp.qq.com', 587) # 端口465或587
當使用Python發送郵件信息時,全部內容都被視爲簡單文本。 即便在短信中包含HTML標籤,它也將顯示爲簡單的文本,HTML標籤將不會根據HTML語法進行格式化。 可是,Python提供了將HTML消息做爲HTML消息發送的選項。
發送電子郵件時,能夠指定一個Mime版本,內容類型和發送HTML電子郵件的字符集。
如下是將HTML內容做爲電子郵件發送的示例 -
#!/usr/bin/python3import smtplib message = """From: From Person <from@fromdomain.com> To: To Person <to@todomain.com> MIME-Version: 1.0 Content-type: text/html Subject: SMTP HTML e-mail test This is an e-mail message to be sent in HTML format <b>This is HTML message.</b> <h1>This is headline.</h1> """try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receivers, message) print "Successfully sent email"except SMTPException: print "Error: unable to send email"
要發送具備混合內容的電子郵件,須要將Content-type標題設置爲multipart / mixed。 而後,能夠在邊界內指定文本和附件部分。
一個邊界以兩個連字符開始,後跟一個惟一的編號,不能出如今電子郵件的消息部分。 表示電子郵件最終部分的最後一個邊界也必須以兩個連字符結尾。
所附的文件應該用包(「m」)功能編碼,以便在傳輸以前具備基本的64編碼。
首先咱們要知道用python代理登陸qq郵箱發郵件,是須要更改本身qq郵箱設置的。在這裏你們須要作兩件事情:郵箱開啓SMTP功能 、得到受權碼。以後咱們來看看如何更改模板代碼,實現使用Python登陸QQ郵箱發送QQ郵件。
注意:也可使用其餘服務商的 SMTP 訪問(QQ、網易、Gmail等)。
使用QQ郵件發送郵件以前如何設置受權碼,參考:
http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256
4.1.發送一純文本郵件到指定郵件
#! /usr/bin/env python#coding=utf-8from email.mime.text import MIMETextfrom email.header import Headerfrom smtplib import SMTP_SSL#qq郵箱smtp服務器host_server = 'smtp.qq.com'#sender_qq爲發件人的qq號碼sender_qq = '7697****@qq.com'#pwd爲qq郵箱的受權碼pwd = '****kenbb***' ## xh**********bdc#發件人的郵箱sender_qq_mail = '7697****@qq.com'#收件人郵箱receiver = 'yiibai.com@gmail.com'#郵件的正文內容mail_content = '你好,這是使用python登陸qq郵箱發郵件的測試'#郵件標題mail_title = 'Maxsu的郵件'#ssl登陸smtp = SMTP_SSL(host_server)#set_debuglevel()是用來調試的。參數值爲1表示開啓調試模式,參數值爲0關閉調試模式smtp.set_debuglevel(1) smtp.ehlo(host_server) smtp.login(sender_qq, pwd) msg = MIMEText(mail_content, "plain", 'utf-8') msg["Subject"] = Header(mail_title, 'utf-8') msg["From"] = sender_qq_mail msg["To"] = receiver smtp.sendmail(sender_qq_mail, receiver, msg.as_string()) smtp.quit()
執行上面代碼後,登陸接收郵件的郵件賬號,這裏接收郵件的帳號爲:yiibai.com@gmail.com
,登陸 http://gmail.com 應該會看到有接收到郵件以下 -
注意:有時可能被認爲是垃圾郵件,若是沒有找到可從「垃圾郵件」查找一下。
4.2.給多我的發送郵件
#! /usr/bin/env python#coding=utf-8from email.mime.text import MIMETextfrom email.header import Headerfrom smtplib import SMTP_SSL#qq郵箱smtp服務器host_server = 'smtp.qq.com'#sender_qq爲發件人的qq號碼sender_qq = '7697****@qq.com'#pwd爲qq郵箱的受權碼pwd = 'h**********bdc' ## h**********bdc#發件人的郵箱sender_qq_mail = '7697****@qq.com'#收件人郵箱receivers = ['yiibai.com@gmail.com','****su@gmail.com']#郵件的正文內容mail_content = '你好,這是使用python登陸qq郵箱發郵件的測試'#郵件標題mail_title = 'Maxsu的郵件'#ssl登陸smtp = SMTP_SSL(host_server)#set_debuglevel()是用來調試的。參數值爲1表示開啓調試模式,參數值爲0關閉調試模式smtp.set_debuglevel(1) smtp.ehlo(host_server) smtp.login(sender_qq, pwd) msg = MIMEText(mail_content, "plain", 'utf-8') msg["Subject"] = Header(mail_title, 'utf-8') msg["From"] = sender_qq_mail msg["To"] = Header("接收者測試", 'utf-8') ## 接收者的別名smtp.sendmail(sender_qq_mail, receivers, msg.as_string()) smtp.quit()
執行上面代碼後,登陸接收郵件的郵件賬號,這裏接收郵件的帳號爲:yiibai.com@gmail.com
,登陸 http://gmail.com 應該會看到有接收到郵件以下 -
4.3.使用Python發送HTML格式的郵件
Python發送HTML格式的郵件與發送純文本消息的郵件不一樣之處就是將MIMEText中_subtype
設置爲html
。代碼以下:
#! /usr/bin/env python#coding=utf-8from email.mime.text import MIMETextfrom email.header import Headerfrom smtplib import SMTP_SSL#qq郵箱smtp服務器host_server = 'smtp.qq.com'#sender_qq爲發件人的qq號碼sender_qq = '7697****@qq.com'#pwd爲qq郵箱的受權碼pwd = '***bmke********' ###發件人的郵箱sender_qq_mail = '7697****@qq.com'#收件人郵箱receiver = 'yiibai.com@gmail.com'#郵件的正文內容mail_content = "你好,<p>這是使用python登陸qq郵箱發送HTML格式郵件的測試:</p><p><a href='http://www.yiibai.com'>易百教程</a></p>"#郵件標題mail_title = 'Maxsu的郵件'#ssl登陸smtp = SMTP_SSL(host_server)#set_debuglevel()是用來調試的。參數值爲1表示開啓調試模式,參數值爲0關閉調試模式smtp.set_debuglevel(1) smtp.ehlo(host_server) smtp.login(sender_qq, pwd) msg = MIMEText(mail_content, "html", 'utf-8') msg["Subject"] = Header(mail_title, 'utf-8') msg["From"] = sender_qq_mail msg["To"] = Header("接收者測試", 'utf-8') ## 接收者的別名smtp.sendmail(sender_qq_mail, receiver, msg.as_string()) smtp.quit()
執行上面代碼後,登陸接收郵件的郵件賬號,這裏接收郵件的帳號爲:yiibai.com@gmail.com
,登陸 http://gmail.com 應該會看到有接收到郵件以下 -
4.4.Python發送帶附件的郵件
要發送帶附件的郵件,首先要建立MIMEMultipart()
實例,而後構造附件,若是有多個附件,可依次構造,最後使用smtplib.smtp
發送。
實現代碼以下所示 -
#! /usr/bin/env python#coding=utf-8import smtplibfrom email.mime.text import MIMETextfrom email.header import Headerfrom smtplib import SMTP_SSLfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartfrom email.header import Header#qq郵箱smtp服務器host_server = 'smtp.qq.com'#sender_qq爲發件人的qq號碼sender_qq = '7697****@qq.com'#pwd爲qq郵箱的受權碼pwd = '*****mkenb****' ###發件人的郵箱sender_qq_mail = '7697****@qq.com'#收件人郵箱receiver = 'yiibai.com@gmail.com'#郵件的正文內容mail_content = "你好,<p>這是使用python登陸qq郵箱發送HTML格式郵件的測試:</p><p><a href='http://www.yiibai.com'>易百教程</a></p>"#郵件標題mail_title = 'Maxsu的郵件'#郵件正文內容msg = MIMEMultipart()#msg = MIMEText(mail_content, "plain", 'utf-8')msg["Subject"] = Header(mail_title, 'utf-8') msg["From"] = sender_qq_mail msg["To"] = Header("接收者測試", 'utf-8') ## 接收者的別名#郵件正文內容msg.attach(MIMEText(mail_content, 'html', 'utf-8')) # 構造附件1,傳送當前目錄下的 test.txt 文件att1 = MIMEText(open('attach.txt', 'rb').read(), 'base64', 'utf-8') att1["Content-Type"] = 'application/octet-stream'# 這裏的filename能夠任意寫,寫什麼名字,郵件中顯示什麼名字att1["Content-Disposition"] = 'attachment; filename="attach.txt"'msg.attach(att1) # 構造附件2,傳送當前目錄下的 runoob.txt 文件att2 = MIMEText(open('yiibai.txt', 'rb').read(), 'base64', 'utf-8') att2["Content-Type"] = 'application/octet-stream'att2["Content-Disposition"] = 'attachment; filename="yiibai.txt"'msg.attach(att2)#ssl登陸smtp = SMTP_SSL(host_server)#set_debuglevel()是用來調試的。參數值爲1表示開啓調試模式,參數值爲0關閉調試模式smtp.set_debuglevel(1) smtp.ehlo(host_server) smtp.login(sender_qq, pwd) smtp.sendmail(sender_qq_mail, receiver, msg.as_string()) smtp.quit()
執行上面代碼後,登陸接收郵件的郵件賬號,這裏接收郵件的帳號爲:yiibai.com@gmail.com
,登陸 http://gmail.com 應該會看到有接收到郵件以下 -
4.5.在 HTML 文本中添加圖片
郵件的HTML文本中通常郵件服務商添加外鏈是無效的,因此要發送帶圖片的郵件內容,能夠參考下面的實例代碼實現:
#! /usr/bin/env python#coding=utf-8import smtplibfrom email.mime.text import MIMETextfrom email.header import Headerfrom smtplib import SMTP_SSLfrom email.mime.image import MIMEImagefrom email.mime.multipart import MIMEMultipartfrom email.mime.text import MIMEText#qq郵箱smtp服務器host_server = 'smtp.qq.com'#sender_qq爲發件人的qq號碼sender_qq = '7697****3@qq.com'#pwd爲qq郵箱的受權碼pwd = 'h******mk*****' ##發件人的郵箱sender_qq_mail = '7697****3@qq.com'#收件人郵箱receiver = ['yiibai.com@gmail.com','h****u@qq.com']#郵件的正文內容mail_content = ""#郵件標題mail_title = 'Maxsu的郵件'#郵件正文內容#msg = MIMEMultipart()msg = MIMEMultipart('related')
msg["Subject"] = Header(mail_title, 'utf-8')
msg["From"] = sender_qq_mail
msg["To"] = Header("接收者測試", 'utf-8') ## 接收者的別名msgAlternative = MIMEMultipart('alternative')
msg.attach(msgAlternative)#郵件正文內容mail_body = """
<p>你好,Python 郵件發送測試...</p>
<p>這是使用python登陸qq郵箱發送HTML格式和圖片的測試郵件:</p>
<p><a href='http://www.yiibai.com'>易百教程</a></p>
<p>圖片演示:</p>
<p>![](cid:send_image)</p>
"""#msg.attach(MIMEText(mail_body, 'html', 'utf-8'))msgText = (MIMEText(mail_body, 'html', 'utf-8'))
msgAlternative.attach(msgText)
# 指定圖片爲當前目錄fp = open('my.png', 'rb')
msgImage = MIMEImage(fp.read())
fp.close()
# 定義圖片 ID,在 HTML 文本中引用msgImage.add_header('Content-ID', '<send_image>')
msg.attach(msgImage)#ssl登陸smtp = SMTP_SSL(host_server)#set_debuglevel()是用來調試的。參數值爲1表示開啓調試模式,參數值爲0關閉調試模式smtp.set_debuglevel(1)
smtp.ehlo(host_server)
smtp.login(sender_qq, pwd)
smtp.sendmail(sender_qq_mail, receiver, msg.as_string())
smtp.quit() 手動叉車
執行上面代碼後,登陸接收郵件的郵件賬號,這裏接收郵件的帳號爲:yiibai.com@gmail.com
,登陸 http://gmail.com 應該會看到有接收到郵件以下 -