飄逸的python – 發送帶各種類型附件的郵件

來源:互聯網
上載者:User

上一篇博文示範了如何發送簡單的郵件,這一篇將示範如何發送各種類型的附件。
基本思路就是,使用MIMEMultipart來標示這個郵件是多個部分組成的,然後attach各個部分。如果是附件,則add_header加入附件的聲明。
在python中,MIME的這些對象的繼承關係如下。
MIMEBase
    |-- MIMENonMultipart
        |-- MIMEApplication
        |-- MIMEAudio
        |-- MIMEImage
        |-- MIMEMessage
        |-- MIMEText
    |-- MIMEMultipart
一般來說,不會用到MIMEBase,而是直接使用它的繼承類。MIMEMultipart有attach方法,而MIMENonMultipart沒有,只能被attach。
MIME有很多種類型,這個略麻煩,如果附件是圖片格式,我要用MIMEImage,如果是音頻,要用MIMEAudio,如果是word、excel,我都不知道該用哪種MIME類型了,得上google去查。
最懶的方法就是,不管什麼類型的附件,都用MIMEApplication,MIMEApplication預設子類型是application/octet-stream。
application/octet-stream表明“這是個二進位的檔案,希望你們那邊知道怎麼處理”,然後用戶端,比如qq郵箱,收到這個聲明後,會根據副檔名來猜測。

下面上代碼。

假設目前的目錄下有foo.xlsx/foo.jpg/foo.pdf/foo.mp3這4個檔案。

import smtplibfrom email.mime.multipart import MIMEMultipartfrom email.mime.text import MIMETextfrom email.mime.application import MIMEApplication_user = "sigeken@qq.com"_pwd  = "***"_to   = "402363522@qq.com"#如名字所示Multipart就是分多個部分msg = MIMEMultipart()msg["Subject"] = "don't panic"msg["From"]    = _usermsg["To"]      = _to#---這是文字部分---part = MIMEText("喬裝打扮,不擇手段")msg.attach(part)#---這是附件部分---#xlsx類型附件part = MIMEApplication(open('foo.xlsx','rb').read())part.add_header('Content-Disposition', 'attachment', filename="foo.xlsx")msg.attach(part)#jpg類型附件part = MIMEApplication(open('foo.jpg','rb').read())part.add_header('Content-Disposition', 'attachment', filename="foo.jpg")msg.attach(part)#pdf類型附件part = MIMEApplication(open('foo.pdf','rb').read())part.add_header('Content-Disposition', 'attachment', filename="foo.pdf")msg.attach(part)#mp3類型附件part = MIMEApplication(open('foo.mp3','rb').read())part.add_header('Content-Disposition', 'attachment', filename="foo.mp3")msg.attach(part) s = smtplib.SMTP("smtp.qq.com", timeout=30)#串連smtp郵件伺服器,連接埠預設是25s.login(_user, _pwd)#登陸伺服器s.sendmail(_user, _to, msg.as_string())#發送郵件s.close()

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.