真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在python中使用郵件模塊-創(chuàng)新互聯(lián)

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

專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來(lái)客戶和效益!成都創(chuàng)新互聯(lián)為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計(jì)制作,服務(wù)好的網(wǎng)站設(shè)計(jì)公司,成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)負(fù)責(zé)任的成都網(wǎng)站制作公司!
import smtplib    
from email.mime.text import MIMEText
email_host = 'smtp.163.com'   #郵箱地址
email_user = 'xxxx@163.com' # 發(fā)送者賬號(hào)
email_pwd = 'xxxx'    # 發(fā)送者密碼
maillist ='511402865@qq.com'
#收件人郵箱,多個(gè)賬號(hào)的話,用逗號(hào)隔開(kāi)
me = email_user
msg = MIMEText('郵件發(fā)送測(cè)試內(nèi)容')  # 郵件內(nèi)容
msg['Subject'] = '郵件測(cè)試主題'  # 郵件主題
msg['From'] = me  # 發(fā)送者賬號(hào)
msg['To'] = maillist  # 接收者賬號(hào)列表
smtp = smtplib.SMTP(email_host,port=25) # 連接郵箱,傳入郵箱地址,和端口號(hào),smtp的端口號(hào)是25
smtp.login(email_user, email_pwd)  # 發(fā)送者的郵箱賬號(hào),密碼
smtp.sendmail(me, maillist, msg.as_string())
# 參數(shù)分別是發(fā)送者,接收者,第三個(gè)是把上面的發(fā)送郵件的內(nèi)容變成字符串
smtp.quit() # 發(fā)送完畢后退出smtp
print ('email send success.')

下面是發(fā)送帶附件的郵件

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='郵件標(biāo)題'
content='發(fā)送郵件測(cè)試'
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))#郵件正文的內(nèi)容
msg['Subject'] = title # 郵件主題
msg['From'] = username # 發(fā)送者賬號(hào)
msg['To'] = recv # 接收者賬號(hào)列表
#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()

當(dāng)然,我們可以封裝成一個(gè)函數(shù),使用的時(shí)候,直接調(diào)用函數(shù),傳入郵箱賬號(hào)密碼,收件人,發(fā)件人,標(biāo)題和內(nèi)容即可。

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

上述內(nèi)容就是如何在python中使用郵件模塊,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊頻道。

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


當(dāng)前題目:如何在python中使用郵件模塊-創(chuàng)新互聯(lián)
轉(zhuǎn)載來(lái)于:http://weahome.cn/article/iccgi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部