中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python基于QQ郵箱實現SSL發送的方法

發布時間:2020-07-30 14:08:33 來源:億速云 閱讀:344 作者:小豬 欄目:開發技術

這篇文章主要講解了Python基于QQ郵箱實現SSL發送的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

一、QQ郵箱SSL發送

獲取qq授權碼

ssl發送方式不是使用郵箱密碼,而是需要授權碼,具體步驟如下:

登錄發送人qq郵箱>>設置>>賬戶>>POP3/STMP服務開啟>>生成授權碼

Python基于QQ郵箱實現SSL發送的方法

驗證密保

Python基于QQ郵箱實現SSL發送的方法

復制16位授權碼

Python基于QQ郵箱實現SSL發送的方法

qq郵箱發送源碼

#!/usr/bin/python3
# encoding:utf-8
'''
Created on 2020-04-24 12:15
@author: Administrator
'''
#coding:utf-8
import smtplib
from email.mime.text import MIMEText # 引入smtplib和MIMEText
from email.mime.multipart import MIMEMultipart

#設置SMTP地址
host = 'smtp.qq.com'
#設置發件服務器端口號,注意,這里有SSL和非SSL兩種形式,qq SSL端口為465,非SSL為端口默認25
port = "465"
#設置發件郵箱
sender = "357@qq.com"
#設置發件郵箱的授權碼 ,qq郵箱ssl發送需要先開啟stmp并獲取密碼 
pwd = 'sqmqweertyuiioplk' #16授權碼
#設置郵件接收人,發送給多人,隔開 
receiver = 'yiwr@163.com,7894@qq.com' 
#設置郵件抄送人,發送給多人,隔開 
cc = 'ywr198592@126.com'

''' 不帶附件發送郵件
#設置html格式的郵件
#body = '<h2>這是一個python測試郵件</h2><p>test</p>' 
#msg = MIMEText(body, 'html') # 設置正文為符合郵件格式的HTML內容

#發送普通格式郵件
msg = MIMEText('Python 普通格式,郵件發送測試...', 'plain', 'utf-8')
'''

#需要發送附件的方法實例
msg = MIMEMultipart()
#設置發送頭信息
msg.add_header('subject', '測試郵件') #設置郵件標題
msg.add_header('from', sender)   # 設置發送人
msg.add_header('to', receiver)   # 設置接收人
msg.add_header('Cc',cc)       # 抄送人

#設置正文內容
msg.attach(MIMEText('Python 郵件發送測試...', 'plain', 'utf-8'))
 
#設置附件1,D://cs.txt 文件
att1 = MIMEText(open('D://cs.txt', 'rb').read(), 'base64', 'utf-8')
att1.add_header('Content-Type', 'application/octet-stream')
# 這里的filename可以任意寫,寫什么名字,郵件中顯示附件的名字
att1.add_header('Content-Disposition', 'attachment', filename='cs.txt')
msg.attach(att1)
 
try:
  #注意!如果是使用非SSL端口,這里就要改為SMTP
  smtpObj = smtplib.SMTP_SSL(host, port)
  #登陸郵箱
  smtpObj.login(sender, pwd)
  #發送郵件,注意第二個參數是發送人抄送人地址
  smtpObj.sendmail(sender, receiver.split(',') + cc.split(','), msg.as_string()) 
  print ("發送成功")
except smtplib.SMTPException as e:
  print ("發送失敗")
  print(e)
finally:
  smtpObj.quit()

發送之后結果截圖

Python基于QQ郵箱實現SSL發送的方法

二、163郵箱非SSL發送

非ssl無需獲取授權碼,直接配置郵箱密碼即可

163郵箱發送源碼

#!/usr/bin/python3
#encoding:utf-8
'''
Created on 2020-04-24 12:15
@author: Administrator
'''
#coding:utf-8
import smtplib
from email.mime.text import MIMEText #引入smtplib和MIMEText
from email.mime.multipart import MIMEMultipart
 
#設置SMTP地址
host = 'smtp.163.com'
#設置發件服務器端口號。注意,這里有SSL和非SSL兩種形式,非SSL默認端口25
port = 25
#設置發件郵箱
sender = "yiwr@163.com"
#設置發件郵箱密碼
pwd = 'xxxx' 
#設置郵件接收人,發送給多人,隔開 
receiver = '7894@qq.com' 
#設置郵件抄送人,發送給多人,隔開 
cc = '357@qq.com'

''' 不帶附件發送郵件
#設置html格式的郵件
#body = '<h2>這是一個python測試郵件</h2><p>test</p>' 
#msg = MIMEText(body, 'html') #設置正文為符合郵件格式的HTML內容

#發送普通格式郵件
msg = MIMEText('Python 普通格式,郵件發送測試...', 'plain', 'utf-8')
'''

#附件方法實例
msg = MIMEMultipart()

#設置頭信息
msg.add_header('subject', '測試郵件') #設置郵件標題
msg.add_header('from', sender)   #設置發送人
msg.add_header('to', receiver)   #設置接收人
msg.add_header('Cc',cc)       # 抄送人


#設置正文內容
msg.attach(MIMEText('Python 郵件發送測試...', 'plain', 'utf-8'))
 
#設置附件1,D://cs.txt 文件
att1 = MIMEText(open('D://cs.txt', 'rb').read(), 'base64', 'utf-8')
att1.add_header('Content-Type', 'application/octet-stream')
#這里的filename可以任意寫,寫什么名字,郵件中顯示附件的名字
att1.add_header('Content-Disposition', 'attachment', filename='cs.txt')
msg.attach(att1)
try:
  #注意!如果是使用SSL端口,這里就要改為SMTP_SSL
  smtpObj = smtplib.SMTP(host, port) 
  #登陸郵箱 
  smtpObj.login(sender, pwd)
  #發送郵件,注意第二個參數是發送人抄送人地址
  smtpObj.sendmail(sender, receiver.split(',') + cc.split(','), msg.as_string())
  print ("發送成功")
except smtplib.SMTPException as e:
  print ("發送失敗")
  print(e)
finally:
  smtpObj.quit()

發送之后結果截圖

Python基于QQ郵箱實現SSL發送的方法

三、問題

3.1 python通過qq郵箱,SMTP發送郵件失敗:

問題描述:使用qq賬戶及密碼SSL方式發送郵件,報錯:(535, b'Login Fail. Please enter your authorization code to login. More information in http://service.mail.qq.com/cgi-bin/help&#63;subtype=1&&id=28&&no=1001256')

解決方案:開啟POP3/SMTP服務,獲取授權碼,qq源碼的郵箱密碼改成授權碼即可

3.2 html附件變.bin文件后綴

問題描述:發送一個html格式的附件,收到郵件發送后綴變成.bin的文件,如圖:

Python基于QQ郵箱實現SSL發送的方法

解決方案:把 att1["Content-Disposition"] = 'attachment; filename="' + "接口測試報告.html" 改為 att1.add_header('Content-Disposition', 'attachment', filename='接口測試報告.html')

看完上述內容,是不是對Python基于QQ郵箱實現SSL發送的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保靖县| 曲靖市| 金山区| 金堂县| 新沂市| 尚义县| 四会市| 孟连| 玉环县| 临洮县| 长丰县| 麦盖提县| 高邮市| 普定县| 体育| 辽宁省| 皋兰县| 松原市| 徐州市| 潢川县| 灵川县| 信丰县| 泰安市| 炎陵县| 常山县| 偏关县| 宁蒗| 黔东| 白水县| 卫辉市| 桦甸市| 乌拉特前旗| 子长县| 阿拉善左旗| 宁城县| 福泉市| 桦南县| 连南| 平顶山市| 视频| 义乌市|