ホームページ > バックエンド開発 > Python チュートリアル > Python SMTPメールモジュールの詳しい説明

Python SMTPメールモジュールの詳しい説明

零下一度
リリース: 2017-05-24 14:09:00
オリジナル
2137 人が閲覧しました

SMTP は電子メールを送信するためのプロトコルです。Python には SMTP のサポートが組み込まれており、プレーン テキストの電子メール、HTML メール、および添付ファイル付きの電子メールを送信できます。

Python は、smtplib と email という 2 つのモジュールで SMTP をサポートしています。email は電子メールの構築を担当し、smtplib は電子メールの送信を担当します。

例:

1. Python を使用してプレーンテキスト形式と HTML 形式で電子メールを送信します。

 email.mime.text  
  email.utils 
 msg = MIMEText(message, , ) 
   msg[] = formataddr([,])          
   msg[] = formataddr([,])               
   msg[] =                              
   server = smtplib.SMTP(, 25                                    
   server.login(,                  
   server.sendmail(, [          
   u                
   u   ==      cpu = 100    
  disk = 500     mem = 50     
  i  range(1         
  cpu > 90            
 alert = u           
 disk > 90             
 alert = u          
 mem > 80            
  alert = u            
  email(alert)
ログイン後にコピー
#Python发送HTML格式的邮件与发送纯文本消息的邮件不同之处就是将MIMEText中_subtype设置为html
ログイン後にコピー
1  msg = MIMEText(&#39;<html><body><h1>Hello</h1>&#39; +2     
&#39;<p>send by <a href="http://www.python.org">Python</a>...</p>&#39; +3     
&#39;</body></html>&#39;, &#39;html&#39;, &#39;utf-8&#39;)
ログイン後にコピー

2. Python は添付ファイル付きの電子メールを送信します。

添付ファイル付きの電子メールを送信するには、まず MIMEMultipart() インスタンスを作成する必要があります。複数の添付ファイルがある場合、添付ファイルを順次作成し、最終的に smtplib.smtp を使用して送信できます。

 1 #!/usr/bin/env python 2 #coding:utf-8 3  4 import smtplib 5 from email.mime.text import MIMEText 6 from email.utils import formataddr 7 from email.mime.multipart import MIMEMultipart 8  9 def email(message):10 11     msg = MIMEMultipart()12     msg[&#39;From&#39;] = formataddr(["管理员",&#39;ylemail2012@sina.cn&#39;])13     msg[&#39;To&#39;] = formataddr(["Saneri",&#39;349622541@qq.com&#39;])14     msg[&#39;Subject&#39;] = "Zabbix报警系统!"15     msg.attach(MIMEText(message, &#39;plain&#39;, &#39;utf-8&#39;))16 17     #---这是附件部分---18     # 构造附件1,文本类型附件19     att1 = MIMEText(open(&#39;test.txt&#39;, &#39;rb&#39;).read(), &#39;base64&#39;, &#39;utf-8&#39;)20     att1["Content-Type"] = &#39;application/octet-stream&#39;21     # 这里的filename可以任意写,写什么名字,邮件中显示什么名字22     att1["Content-Disposition"] = &#39;attachment; filename="test.txt"&#39;23     msg.attach(att1)24 25     # 构造附件2,jpg类型附件26     from email.mime.application import MIMEApplication27     att2 = MIMEApplication(open(&#39;001.jpg&#39;,&#39;rb&#39;).read())28     att2.add_header(&#39;Content-Disposition&#39;, &#39;attachment&#39;, filename="001.jpg")29     msg.attach(att2)30     #构造附件3,pdf类型附件31     att3 = MIMEApplication(open(&#39;test.pdf&#39;,&#39;rb&#39;).read())32     att3.add_header(&#39;Content-Disposition&#39;, &#39;attachment&#39;, filename="test.pdf")33     msg.attach(att3)34     #构造附件4,xlsx类型附件35     att4 = MIMEApplication(open(&#39;test.xlsx&#39;,&#39;rb&#39;).read())36     att4.add_header(&#39;Content-Disposition&#39;, &#39;attachment&#39;, filename="test.xlsx")37     msg.attach(att4)38     #构造附件5,mp3类型附件39     att5 = MIMEApplication(open(&#39;test.mp3&#39;,&#39;rb&#39;).read())40     att5.add_header(&#39;Content-Disposition&#39;, &#39;attachment&#39;, filename="test.mp3")41     msg.attach(att5)42 43     try:44         server = smtplib.SMTP("smtp.sina.com", 25)45         #set_debuglevel(1)可以打印出和SMTP服务器交互的所有信息46         #server.set_debuglevel(1)47         #login()方法用来登录SMTP服务器48         server.login("ylemail2012@sina.cn","password")49         #sendmail()方法就是发邮件,由于可以一次发给多个人,所以传入一个list,邮件正文是一个str,as_string()把MIMEText对象变成str50         server.sendmail(&#39;ylemail2012@sina.cn&#39;, [&#39;349622541@qq.com&#39;,], msg.as_string())51         print u"邮件发送成功!"52         server.quit()53     except smtplib.SMTPException:54         print u"Error: 无法发送邮件"55 if name == &#39;main&#39;:56     cpu = 10057     disk = 50058     mem = 5059     for i in range(1):60         if cpu > 90:61             alert = u"CPU出问题!"62             email(alert)63         if disk > 90:64             alert = u"硬盘出问题!"65             email(alert)66         if mem > 80:67             alert = u"内存出问题!"68             email(alert)
ログイン後にコピー

3.HTML本文に画像を追加する

一般のメールサービスプロバイダーがメールのHTML本文に外部リンクを追加することは無効です。正しくブレークスルーを追加する例は次のとおりです:

 1 #!/usr/bin/env python 2 #coding:utf-8 3  4 import smtplib 5 from email.mime.multipart import MIMEMultipart 6 from email.mime.text import MIMEText 7 from email.mime.image import MIMEImage 8 from email.utils import formataddr 9 10 def email():11     msg = MIMEMultipart()12     msg[&#39;From&#39;] = formataddr(["管理员",&#39;ylemail2012@sina.cn&#39;])13     msg[&#39;To&#39;] = formataddr(["Saneri",&#39;349622541@qq.com&#39;])14     msg[&#39;Subject&#39;] = "Zabbix报警系统!"15     msg.attach(MIMEText(&#39;<b>Some <i>HTML</i> text</b> and an image.<br><img src="cid:image1"><br>good!&#39;,&#39;html&#39;,&#39;utf-8&#39;))16 17     fp = open(&#39;001.jpg&#39;, &#39;rb&#39;)18     msgImage = MIMEImage(fp.read())19     fp.close()20     msgImage.add_header(&#39;Content-ID&#39;, &#39;<image1>&#39;)21     msg.attach(msgImage)22     try:23         server = smtplib.SMTP("smtp.sina.com", 25)24         server.login("ylemail2012@sina.cn","password")25         server.sendmail(&#39;ylemail2012@sina.cn&#39;, [&#39;349622541@qq.com&#39;,], msg.as_string())26         print u"邮件发送成功!"27         server.quit()28     except smtplib.SMTPException:29         print u"Error: 无法发送邮件"30 31 if name == &#39;main&#39;:32     email()
ログイン後にコピー

4. HTML 形式とプレーン形式の両方をサポートします

HTML メールを送信すると、受信者はブラウザや Outlook などのソフトウェアを介して通常どおりメールの内容を閲覧できますが、受信者のデバイスが古すぎて HTML メールを表示できない場合はどうすればよいでしょうか。

HTML送信時にプレーンテキストを添付する方法で、受信者がHTML形式でメールを閲覧できない場合は、自動的にダウングレードしてプレーンテキストメールを閲覧することができます。

活用MIMEMultipart就可以组合一个HTML和Plain,要注意指定subtype是alternative:

1 msg = MIMEMultipart(&#39;alternative&#39;)2 msg[&#39;From&#39;] = ...3 msg[&#39;To&#39;] = ...4 msg[&#39;Subject&#39;] = ...5 6 msg.attach(MIMEText(&#39;hello&#39;, &#39;plain&#39;, &#39;utf-8&#39;))7 msg.attach(MIMEText(&#39;<html><body><h1>Hello</h1></body></html>&#39;, &#39;html&#39;, &#39;utf-8&#39;))8 # 正常发送msg对象...
ログイン後にコピー

【関連する推奨事項】

1. Python で SMTP を使用してメールを送信する例の詳細な紹介

2. Python で SMTP を使用してメールを送信するためのコードの概要

3. c# は qq メールボックスを呼び出します

4. Python は電子メールを送信するために SMTP を使用します

5. php smtp は電子メールを送信します

6.メールのグラフィック例

7.

Python smtplib SSL/TLS セキュアメール送信モジュールの例

以上がPython SMTPメールモジュールの詳しい説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート