91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何在python中使用郵件模塊

發布時間:2021-03-17 17:22:42 來源:億速云 閱讀:153 作者:Leah 欄目:開發技術

本篇文章為大家展示了如何在python中使用郵件模塊,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

import smtplib    
from email.mime.text import MIMEText
email_host = 'smtp.163.com'   #郵箱地址
email_user = 'xxxx@163.com' # 發送者賬號
email_pwd = 'xxxx'    # 發送者密碼
maillist ='511402865@qq.com'
#收件人郵箱,多個賬號的話,用逗號隔開
me = email_user
msg = MIMEText('郵件發送測試內容')  # 郵件內容
msg['Subject'] = '郵件測試主題'  # 郵件主題
msg['From'] = me  # 發送者賬號
msg['To'] = maillist  # 接收者賬號列表
smtp = smtplib.SMTP(email_host,port=25) # 連接郵箱,傳入郵箱地址,和端口號,smtp的端口號是25
smtp.login(email_user, email_pwd)  # 發送者的郵箱賬號,密碼
smtp.sendmail(me, maillist, msg.as_string())
# 參數分別是發送者,接收者,第三個是把上面的發送郵件的內容變成字符串
smtp.quit() # 發送完畢后退出smtp
print ('email send success.')

下面是發送帶附件的郵件

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
username='xxx@xx.com'
email_host = 'smtp.163.com'
passwd='123456'
recv=['511402865@qq.com',]
title='郵件標題'
content='發送郵件測試'
msg = MIMEMultipart()
file='a.txt'
att = MIMEText(open(file,encoding='utf-8').read())
att["Content-Type"] = 'application/octet-stream'
att["Content-Disposition"] = 'attachment; filename="%s"'%file
msg.attach(att)
msg.attach(MIMEText(content))#郵件正文的內容
msg['Subject'] = title # 郵件主題
msg['From'] = username # 發送者賬號
msg['To'] = recv # 接收者賬號列表
#smtp = smtplib.SMTP_SSL(eail_host,port=456)#qq郵箱
smtp = smtplib.SMTP_SSL(eail_host,port=25)#其他郵箱
smtp.login(username,passwd)
smtp.sendmail(username,recv,msg.as_string())
smtp.quit()

當然,我們可以封裝成一個函數,使用的時候,直接調用函數,傳入郵箱賬號密碼,收件人,發件人,標題和內容即可。

  import smtplib      
  from email.mime.text import MIMEText
  def send_mail(username,passwd,recv,title,content,mail_host='smtp.163.com',port=25):
    '''
    發送郵件函數,默認使用163smtp
    :param username: 郵箱賬號 xx@163.com
    :param passwd: 郵箱密碼
    :param recv: 郵箱接收人地址,多個賬號以逗號隔開
    :param title: 郵件標題
    :param content: 郵件內容
    :param mail_host: 郵箱服務器
    :param port: 端口號
    :return:
    '''
    msg = MIMEText(content)  # 郵件內容
    msg['Subject'] = title  # 郵件主題
    msg['From'] = username  # 發送者賬號
    msg['To'] = recv  # 接收者賬號列表
    smtp = smtplib.SMTP(mail_host,port=port) # 連接郵箱,傳入郵箱地址,和端口號,smtp的端口號是25
    smtp.login(username, passwd)  # 發送者的郵箱賬號,密碼
    smtp.sendmail(username, recv, msg.as_string())
    # 參數分別是發送者,接收者,第三個是把上面的發送郵件的內容變成字符串
    smtp.quit() # 發送完畢后退出smtp
    print ('email send success.')
     
email_user = 'xxxx@163.com' # 發送者賬號
email_pwd = 'xxxxx'    # 發送者密碼
maillist ='511402865@qq.com'
title = '測試郵件標題'
content = '這里是郵件內容'
send_mail(email_user,email_pwd,maillist,title,content)

上述內容就是如何在python中使用郵件模塊,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

英吉沙县| 浮山县| 九寨沟县| 鄢陵县| 建始县| 淅川县| 贵阳市| 溧水县| 峨眉山市| 蚌埠市| 阆中市| 东宁县| 黔西县| 伽师县| 奉新县| 宣威市| 新疆| 同江市| 甘孜县| 大厂| 定远县| 荆州市| 丹江口市| 双流县| 井研县| 墨竹工卡县| 潢川县| 沁阳市| 绥芬河市| 繁昌县| 岫岩| 合川市| 普陀区| 科技| 中卫市| 吉首市| 辽宁省| 日土县| 抚松县| 神木县| 漠河县|