小編給大家分享一下如何實(shí)現(xiàn)python收發(fā)郵件功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
為普安等地區(qū)用戶(hù)提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及普安網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都做網(wǎng)站、網(wǎng)站建設(shè)、普安網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專(zhuān)業(yè)、用心的態(tài)度為用戶(hù)提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶(hù)的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!1. 準(zhǔn)備工作
首先,我們需要有一個(gè)測(cè)試郵箱,我們使用新浪郵箱,而且要進(jìn)行如下設(shè)置:
在新浪郵箱首頁(yè)的右上角找到設(shè)置->更多設(shè)置,然后在左邊選擇“客戶(hù)端/pop/imap/smtp”:
最后,將Pop3/smtp服務(wù)的服務(wù)狀態(tài)打開(kāi)即可:
2. poplib接收郵件
首先,介紹一下poplib登錄郵箱和下載郵件的一些接口:
self.popHost = 'pop.sina.com' self.smtpHost = 'smtp.sina.com' self.port = 25 self.userName = 'xxxxxx@sina.com' self.passWord = 'xxxxxx' self.bossMail = 'xxxxxx@qq.com'
我們需要如上一些常量,用于指定登錄郵箱以及pop,smtp服務(wù)器及端口。我們調(diào)用poplib的POP3_SSL接口可以登錄到郵箱。
# 登錄郵箱 def login(self): try: self.mailLink = poplib.POP3_SSL(self.popHost) self.mailLink.set_debuglevel(0) self.mailLink.user(self.userName) self.mailLink.pass_(self.passWord) self.mailLink.list() print u'login success!' except Exception as e: print u'login fail! ' + str(e) quit()
在登錄郵箱的時(shí)候,很自然,我們需要提供用戶(hù)名和密碼,如上述代碼所示,使用非常簡(jiǎn)單。
登錄郵箱成功后,我們可以使用list方法獲取郵箱的郵件信息。我們看到list方法的定義:
def list(self, which=None): """Request listing, return result. Result without a message number argument is in form ['response', ['mesg_num octets', ...], octets]. Result when a message number argument is given is a single response: the "scan listing" for that message. """ if which is not None: return self._shortcmd('LIST %s' % which) return self._longcmd('LIST')
我們看到list方法的注釋?zhuān)渲形囊馑际?,list方法有一個(gè)默認(rèn)參數(shù)which,其默認(rèn)值為None,當(dāng)調(diào)用者沒(méi)有給出參數(shù)時(shí),該方法會(huì)列出所有郵件的信息,其返回形式為 [response, ['msg_number, octets', ...], octets],其中,response為響應(yīng)結(jié)果,msg_number是郵件編號(hào),octets為8位字節(jié)單位。我們看一看具體例子:
('+OK ', ['1 2424', '2 2422'], 16)
這是一個(gè)調(diào)用list()方法以后的返回結(jié)果。很明顯,這是一個(gè)tuple,第一個(gè)值sahib響應(yīng)結(jié)果'+OK',表示請(qǐng)求成功,第二個(gè)值為一個(gè)數(shù)組,存儲(chǔ)了郵件的信息。例如'1 2424'中的1表示該郵件編號(hào)為1。
下面我們?cè)倏慈绾问褂胮oplib下載郵件。
# 獲取郵件 def retrMail(self): try: mail_list = self.mailLink.list()[1] if len(mail_list) == 0: return None mail_info = mail_list[0].split(' ') number = mail_info[0] mail = self.mailLink.retr(number)[1] self.mailLink.dele(number) subject = u'' sender = u'' for i in range(0, len(mail)): if mail[i].startswith('Subject'): subject = mail[i][9:] if mail[i].startswith('X-Sender'): sender = mail[i][10:] content = {'subject': subject, 'sender': sender} return content except Exception as e: print str(e) return None
poplib獲取郵件內(nèi)容的接口是retr方法。其需要一個(gè)參數(shù),該參數(shù)為要獲取的郵件編號(hào)。下面是retr方法的定義:
def retr(self, which): """Retrieve whole message number 'which'. Result is in form ['response', ['line', ...], octets]. """ return self._longcmd('RETR %s' % which)
我們看到注釋?zhuān)梢灾?,retr方法可以獲取指定編號(hào)的郵件的全部?jī)?nèi)容,其返回形式為[response, ['line', ...], octets],可見(jiàn),郵件的內(nèi)容是存儲(chǔ)在返回的tuple的第二個(gè)元素中,其存儲(chǔ)形式為一個(gè)數(shù)組。我們測(cè)試一下,該數(shù)組是怎么樣的。
我們可以看到,這個(gè)數(shù)組的存儲(chǔ)形式類(lèi)似于一個(gè)dict!于是,我們可以據(jù)此找到任何我們感興趣的內(nèi)容。例如,我們的示例代碼是要找到郵件的主題以及發(fā)送者,就可以按照上面的代碼那樣編寫(xiě)。當(dāng)然,你也可以使用正則匹配~~~ 下面是測(cè)試結(jié)果:
嗯...大家可以自己試一下。
3. smtp發(fā)送郵件
和pop一樣,使用smtp之前也要先給它提供一些需要的常量:
self.mail_box = smtplib.SMTP(self.smtpHost, self.port) self.mail_box.login(self.userName, self.passWord)
上面是使用smtp登錄郵箱的代碼,和pop類(lèi)似。下面給出使用smtp發(fā)送郵件的代碼,你會(huì)看到python是多么的簡(jiǎn)單優(yōu)美!
# 發(fā)送郵件 def sendMsg(self, mail_body='Success!'): try: msg = MIMEText(mail_body, 'plain', 'utf-8') msg['Subject'] = mail_body msg['from'] = self.userName self.mail_box.sendmail(self.userName, self.bossMail, msg.as_string()) print u'send mail success!' except Exception as e: print u'send mail fail! ' + str(e)
這就是python用smtp發(fā)送郵件的代碼!很簡(jiǎn)單有木有!很方便有木有!很通俗易懂有木有!這里主要就是sendmail這個(gè)方法,指定發(fā)送方,接收方和郵件內(nèi)容就可以了。還有MIMEText可以看它的定義如下:
class MIMEText(MIMENonMultipart): """Class for generating text/* type MIME documents.""" def __init__(self, _text, _subtype='plain', _charset='us-ascii'): """Create a text/* type MIME document. _text is the string for this message object. _subtype is the MIME sub content type, defaulting to "plain". _charset is the character set parameter added to the Content-Type header. This defaults to "us-ascii". Note that as a side-effect, the Content-Transfer-Encoding header will also be set. """ MIMENonMultipart.__init__(self, 'text', _subtype, **{'charset': _charset}) self.set_payload(_text, _charset)
看注釋~~~ 這就是一個(gè)生成指定內(nèi)容,指定編碼的MIME文檔的方法而已。順便看看sendmail方法吧~~~
def sendmail(self, from_addr, to_addrs, msg, mail_options=[], rcpt_options=[]): """This command performs an entire mail transaction. The arguments are: - from_addr : The address sending this mail. - to_addrs : A list of addresses to send this mail to. A bare string will be treated as a list with 1 address. - msg : The message to send. - mail_options : List of ESMTP options (such as 8bitmime) for the mail command. - rcpt_options : List of ESMTP options (such as DSN commands) for all the rcpt commands.
嗯...使用smtp發(fā)送郵件的內(nèi)容大概就這樣了。
4. 源碼及測(cè)試
# -*- coding:utf-8 -*- from email.mime.text import MIMEText import poplib import smtplib class MailManager(object): def __init__(self): self.popHost = 'pop.sina.com' self.smtpHost = 'smtp.sina.com' self.port = 25 self.userName = 'xxxxxx@sina.com' self.passWord = 'xxxxxx' self.bossMail = 'xxxxxx@qq.com' self.login() self.configMailBox() # 登錄郵箱 def login(self): try: self.mailLink = poplib.POP3_SSL(self.popHost) self.mailLink.set_debuglevel(0) self.mailLink.user(self.userName) self.mailLink.pass_(self.passWord) self.mailLink.list() print u'login success!' except Exception as e: print u'login fail! ' + str(e) quit() # 獲取郵件 def retrMail(self): try: mail_list = self.mailLink.list()[1] if len(mail_list) == 0: return None mail_info = mail_list[0].split(' ') number = mail_info[0] mail = self.mailLink.retr(number)[1] self.mailLink.dele(number) subject = u'' sender = u'' for i in range(0, len(mail)): if mail[i].startswith('Subject'): subject = mail[i][9:] if mail[i].startswith('X-Sender'): sender = mail[i][10:] content = {'subject': subject, 'sender': sender} return content except Exception as e: print str(e) return None def configMailBox(self): try: self.mail_box = smtplib.SMTP(self.smtpHost, self.port) self.mail_box.login(self.userName, self.passWord) print u'config mailbox success!' except Exception as e: print u'config mailbox fail! ' + str(e) quit() # 發(fā)送郵件 def sendMsg(self, mail_body='Success!'): try: msg = MIMEText(mail_body, 'plain', 'utf-8') msg['Subject'] = mail_body msg['from'] = self.userName self.mail_box.sendmail(self.userName, self.bossMail, msg.as_string()) print u'send mail success!' except Exception as e: print u'send mail fail! ' + str(e) if __name__ == '__main__': mailManager = MailManager() mail = mailManager.retrMail() if mail != None: print mail mailManager.sendMsg()
上述代碼先登錄郵箱,然后獲取其第一封郵件并刪除之,然后獲取該郵件的主題和發(fā)送方并打印出來(lái),最后再發(fā)送一封成功郵件給另一個(gè)bossMail郵箱。
測(cè)試結(jié)果如下:
看完了這篇文章,相信你對(duì)“如何實(shí)現(xiàn)python收發(fā)郵件功能”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(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í)售后在線(xiàn),公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿(mǎn)足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)站名稱(chēng):如何實(shí)現(xiàn)python收發(fā)郵件功能-創(chuàng)新互聯(lián)
URL標(biāo)題:http://muchs.cn/article18/pipgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供靜態(tài)網(wǎng)站、手機(jī)網(wǎng)站建設(shè)、定制開(kāi)發(fā)、外貿(mào)網(wǎng)站建設(shè)、自適應(yīng)網(wǎng)站、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容
營(yíng)銷(xiāo)型網(wǎng)站建設(shè)知識(shí)