Python中怎么發(fā)送HTML格式的郵件,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都創(chuàng)新互聯(lián)是一家專業(yè)提供昭平企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、H5開發(fā)、小程序制作等業(yè)務(wù)。10年已為昭平眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。Python發(fā)送HTML格式的郵件與發(fā)送純文本消息的郵件不同之處就是將MIMEText中_subtype設(shè)置為html。具體代碼如下:
#"-*- coding: utf-8 -*-"import smtplibfrom email.mime.text import MIMETextmail_user = raw_input("請輸入你的163郵箱: ")mail_password = raw_input("請輸入郵箱授權(quán)碼: ")mail_from = raw_input("來自: ")mail_sub = raw_input("郵件主題: ")mail_content = raw_input("郵件內(nèi)容: ") #例如: html格式的: "<a href='http://www.cnblogs.com/xiaowuyi'>小五義</a>"#mailto_list = raw_input("") #qq郵箱mail_host="smtp.163.com"mail_postfix="163.com"def sendmail(sub,content): me=mail_from+"<"+mail_user+">" msg=MIMEText(content,"html","utf-8") msg['Subject']=sub msg['From']=me to_list = map(None, raw_input("發(fā)送給: ").split(' ')) msg['To']=",".join(to_list) try: server=smtplib.SMTP() server.connect(mail_host) server.login(mail_user,mail_password) server.sendmail(me,to_list,msg.as_string()) server.close() return True except Exception,e: print str(e) return Falseif sendmail(mail_sub, mail_content): print "done!"else: print "falsed!"#第二種方法:#!/usr/bin/python#-*- coding: utf-8 -*-from email import encodersfrom email.header import Headerfrom email.mime.text import MIMETextfrom email.utils import parseaddr, formataddrimport smtplibmailer_name=raw_input("from: ")mail_user=raw_input("163 email address: ")mail_pass=raw_input("郵箱授權(quán)碼: ")mail_content=raw_input("content: ") #郵件內(nèi)容是html格式的mail_host="smtp.163.com"mail_postfix="163.com"def send_mail(sub,content): me=mailer_name +"<"+mail_user+">" msg=MIMEText(content,"html","utf-8") msg['Subject']=sub msg['From']=me to_list = map(None,raw_input("mail_to: ").split(" "))#可以群發(fā) msg['To']=",".join(to_list) try: server=smtplib.SMTP() server.connect(mail_host) server.login(mail_user,mail_pass) server.sendmail(me,to_list,msg.as_string()) server.close() return True except Exception,e: print str(e) return Falseif send_mail("郵件",mail_content): print "done!"else: print "failed!"
看完上述內(nèi)容,你們掌握Python中怎么發(fā)送HTML格式的郵件的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當(dāng)前題目:Python中怎么發(fā)送HTML格式的郵件-創(chuàng)新互聯(lián)
路徑分享:http://www.rwnh.cn/article16/cciodg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、營銷型網(wǎng)站建設(shè)、微信小程序、App開發(fā)、網(wǎng)站營銷、手機(jī)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容