在Python如何使用SMTP傳送郵件
SMTP(Simple Mail Transfer Protocol)即簡單郵件傳輸協議,它是一組用於由源地址到目的地址傳送郵件的規則,由它來控制信件的中轉方式。 |
python的smtplib提供了一種很方便的途徑傳送電子郵件。它對smtp協議進行了簡單的封裝。
import smtplib smtpObj = smtplib.SMTP( [host [, port [, local_hostname]]] )
引數說明:
host: SMTP 伺服器主機。 你可以指定主機的ip地址或者域名如:w3cschool.cc,這個是可選引數。
port: 如果你提供了 host 引數, 你需要指定 SMTP 服務使用的埠號,一般情況下SMTP埠號為25。
local_hostname: 如果SMTP在你的本機上,你只需要指定伺服器地址為 localhost 即可。
Python SMTP物件使用sendmail方法傳送郵件,語法如下:
SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options]
引數說明:
from_addr: 郵件傳送者地址。
to_addrs: 字串列表,郵件傳送地址。
msg: 傳送訊息
這裡要注意一下第三個引數,msg是字串,表示郵件。我們知道郵件一般由標題,發信人,收件人,郵件內容,附件等構成,傳送郵件的時候,要注意msg的格式。這個格式就是smtp協議中定義的格式。
#!/usr/bin/python import smtplib sender = 'from@fromdomain.com' receivers = ['to@todomain.com'] message = """From: From PersonTo: To PersonSubject: SMTP e-mail test This is a test e-mail message. """ try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receivers, message) print "Successfully sent email" except SMTPException: print "Error: unable to send email"
Python傳送HTML格式的郵件與傳送純文字訊息的郵件不同之處就是將MIMEText中_subtype設定為html。具體程式碼如下:
import smtplib from email.mime.text import MIMEText mailto_list=["YYY@YYY.com"] mail_host="smtp.XXX.com" #設定伺服器 mail_user="XXX" #使用者名稱 mail_pass="XXXX" #口令 mail_postfix="XXX.com" #發件箱的字尾 def send_mail(to_list,sub,content): #to_list:收件人;sub:主題;content:郵件內容 me="hello"+"< "+mail_user+"@"+mail_postfix+">" #這裡的hello可以任意設定,收到信後,將按照設定顯示 msg = MIMEText(content,_subtype='html',_charset='gb2312') #建立一個例項,這裡設定為html格式郵件 msg['Subject'] = sub #設定主題 msg['From'] = me msg['To'] = ";".join(to_list) try: s = smtplib.SMTP() s.connect(mail_host) #連線smtp伺服器 s.login(mail_user,mail_pass) #登陸伺服器 s.sendmail(me, to_list, msg.as_string()) #傳送郵件 s.close() return True except Exception, e: print str(e) return False if __name__ == '__main__': if send_mail(mailto_list,"hello","小五義"): print "傳送成功" else: print "傳送失敗"
或者你也可以在訊息體中指定Content-type為text/html,如下例項:
#!/usr/bin/python import smtplib message = """From: From PersonTo: To PersonMIME-Version: 1.0 Content-type: text/html Subject: SMTP HTML e-mail test This is an e-mail message to be sent in HTML format This is HTML message.This is headline.""" try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, receivers, message) print "Successfully sent email" except SMTPException: print "Error: unable to send email"
傳送帶附件的郵件,首先要建立MIMEMultipart()例項,然後構造附件,如果有多個附件,可依次構造,最後利用smtplib.smtp傳送。
from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart import smtplib #建立一個帶附件的例項 msg = MIMEMultipart() #構造附件1 att1 = MIMEText(open('d:123.rar', 'rb').read(), 'base64', 'gb2312') att1["Content-Type"] = 'application/octet-stream' att1["Content-Disposition"] = 'attachment; filename="123.doc"'#這裡的filename可以任意寫,寫什麼名字,郵件中顯示什麼名字 msg.attach(att1) #構造附件2 att2 = MIMEText(open('d:123.txt', 'rb').read(), 'base64', 'gb2312') att2["Content-Type"] = 'application/octet-stream' att2["Content-Disposition"] = 'attachment; filename="123.txt"' msg.attach(att2) #加郵件頭 msg['to'] = 'YYY@YYY.com' msg['from'] = 'XXX@XXX.com' msg['subject'] = 'hello world' #傳送郵件 try: server = smtplib.SMTP() server.connect('smtp.XXX.com') server.login('XXX','XXXXX')#XXX為使用者名稱,XXXXX為密碼 server.sendmail(msg['from'], msg['to'],msg.as_string()) server.quit() print '傳送成功' except Exception, e: print str(e)
以下例項指定了Content-type header 為 multipart/mixed,併傳送/tmp/test.txt 文字檔案:
#!/usr/bin/python import smtplib import base64 filename = "/tmp/test.txt" # 讀取檔案內容並使用 base64 編碼 fo = open(filename, "rb") filecontent = fo.read() encodedcontent = base64.b64encode(filecontent) # base64 sender = 'webmaster@tutorialpoint.com' reciever = 'amrood.admin@gmail.com' marker = "AUNIQUEMARKER" body =""" This is a test email to send an attachement. """ # 定義頭部資訊 part1 = """From: From PersonTo: To PersonSubject: Sending Attachement MIME-Version: 1.0 Content-Type: multipart/mixed; boundary=%s --%s """ % (marker, marker) # 定義訊息動作 part2 = """Content-Type: text/plain Content-Transfer-Encoding:8bit %s --%s """ % (body,marker) # 定義附近部分 part3 = """Content-Type: multipart/mixed; name="%s" Content-Transfer-Encoding:base64 Content-Disposition: attachment; filename=%s %s --%s-- """ %(filename, filename, encodedcontent, marker) message = part1 + part2 + part3 try: smtpObj = smtplib.SMTP('localhost') smtpObj.sendmail(sender, reciever, message) print "Successfully sent email" except Exception: print "Error: unable to send email"
原文地址:
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2661183/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python使用SMTP傳送郵件Python
- Python SMTP傳送郵件Python
- 配置mail使用SMTP傳送郵件AI
- Jmeter——SMTP Sampler傳送郵件JMeter
- python實現基於smtp傳送郵件Python
- 利用UTL_SMTP傳送郵件
- SMTP協議解讀以及如何使用SMTP協議傳送電子郵件協議
- SMTP操作使用詳解並透過python進行smtp郵件傳送示例Python
- 【python】用SMTP模組傳送帶附件的郵件Python
- ThinkPHP_phpmailer使用外部認證SMTP傳送郵件PHPAI
- 使用python傳送郵件Python
- 使用python傳送郵件和接收郵件Python
- 如何使用Excel傳送郵件?Excel
- 如何在 Linux 上使用 Gmail SMTP 伺服器傳送郵件通知LinuxAI伺服器
- 軟體測試學習教程——Python SMTP傳送郵件Python
- 一次性解決python smtp 傳送outlook郵件,163郵件,qq郵件等等.Python
- Linux 上使用 Gmail SMTP 伺服器傳送郵件通知LinuxAI伺服器
- mailx 或telnet 使用指定SMTP伺服器傳送郵件AI伺服器
- WPForms和 WP Mail SMTP – 最好的WordPress SMTP郵件傳送外掛ORMAI
- python傳送郵件Python
- 使用python傳送和接收郵件Python
- 使用phpmailer傳送郵件PHPAI
- 使用JavaMail傳送郵件JavaAI
- 使用nodemailer傳送郵件AI
- 一次郵件傳送協議SMTP問題排查協議
- springboot如何使用outlook傳送郵件Spring Boot
- 郵件傳送
- 傳送郵件
- 使用 smtplib 傳送郵件
- 使用C#傳送郵件C#
- 在Perl中使用sendmail傳送MIME郵件 (轉)AI
- python實現傳送郵件Python
- 使用Python批次傳送個性化郵件Python
- python SMTP郵件服務Python
- 如何傳送電子郵件到別人郵箱?電子郵件傳送的方法
- Jenkins 如何成功傳送郵件?Jenkins
- SpringBoot整合Mail傳送郵件&傳送模板郵件Spring BootAI
- Python進階(四十六)-Python3實現SMTP傳送郵件詳細教程Python