# send_mail.py
#coding:utf-8
import smtplib
from email.mime.text import mimetext
from email.header import header
# 第三方 smtp 服務
mail_host="smtp.qq.com" #設定伺服器,qq郵箱、163郵箱(smtp.163.com)、自建郵箱
mail_user="使用者名稱" #使用者名稱
sender = '發件人qq.com' # 發件人
receivers = ['收件人[email protected]','收件人[email protected]','收件人[email protected]'] # 收件人
# 傳送郵件主題
subject = 'python email test'
# 編寫html型別的郵件正文
msg = mimetext('
','html','utf-8')
msg['subject'] = header(subject,'utf-8')
msg['from'] = '發件人@qq.com'
msg['to'] = '收件人[email protected],收件人[email protected]'
msg['cc'] = '收件人[email protected]'
# 連線傳送郵件
smtpobj = smtplib.smtp_ssl(mail_host)
smtpobj.login(mail_user,mail_pass)
smtpobj.sendmail(sender, receivers, msg.as_string())
smtpobj.quit()
html傳送郵件 Python傳送郵件(三十)
簡單郵件傳輸協議 smtp 是一種協議,用於在郵件伺服器之間傳送電子郵件和路由電子郵件。python提供smtplib模組,該模組定義了乙個smtp客戶端會話物件,可用於使用smtp或esmtp偵聽器守護程式向任何網際網路機器傳送郵件。這是乙個簡單的語法,用來建立乙個smtp物件,稍後將演示如何用它...
python 傳送郵件
coding utf 8 import smtplib from email.mime.text import mimetext from email.header import header 檔案形式的郵件 def email file mail host smtp.qq.com 郵箱伺服器 ma...
python 傳送郵件
smtp mail transfer protocol 即簡單郵件傳輸協議,它是一組用於由源位址到目的位址傳送郵件的規則,由它來控制信件的中轉方式。python的smtplib提供了一種很方便的途徑傳送電子郵件。它對smtp協議進行了簡單的封裝。直接貼 coding utf 8 import smt...