python smtp 通過MIMEText類 發送HTML格式的郵件

來源:互聯網
上載者:User

標籤:python smtp mimetext

  由於純文字的郵件內容已經不能滿足多樣化的需求,主要介紹通過引入mail.mime的MIMEText 類來實現支援HTML格式的郵件,支援所有HTML格式的元素,包括表格,圖片,動畫,css樣式,表單等。(參考劉老師文獻)

   案例中收集的是最簡單的伺服器硬體資訊,通過smtp將資訊發到收件者郵箱,大家可以根據自己的需求收集所需要的資訊(比如CPU百分比,硬碟剩餘百分比,記憶體使用量百分比,並設定閾值,當硬碟剩餘空間不足10%,發送郵件通知管理員及時處理)



#!/usr/bin/env python

#coding: utf-8

import smtplib

import os

import psutil

from email.mime.text import MIMEText    //匯入MIMEText類

ip = os.popen("ifconfig |grep -v 127 |grep inet |awk ‘{print $2}‘|cut -d: -f2").read().strip()     //擷取IP地址

hostname  = os.popen("hostname").read().strip()   //擷取主機名稱

cpu = psutil.cpu_count()  //擷取CPU線程

mem = os.popen("free -m |grep Mem |awk ‘{print $2}‘").read().strip()+"M"  //擷取記憶體總量

disk = os.popen("fdisk -l |grep -E Disk |awk ‘{print $3}‘").read().strip()+"G" //擷取硬碟總大小

HOST = "smtp.163.com"      //指定使用網易163郵箱

SUBJECT = u"伺服器硬體資訊"   //郵件標題

TO = "[email protected]"   //收件者

FROM = "[email protected]"    //寄件者

msg = MIMEText("""

                <table color="CCCC33" width="800" border="1" cellspacing="0" cellpadding="5" text-align="center">

                        <tr>

                                <td text-align="center">name</td>

                                <td text-align="center">network</td>

                                <td>CPU</td>

                                <td>Mem</td>

                                <td>Disk</td>

                        </tr>   

                        <tr>   

                                <td text-align="center">%s </td>

                                <td>%s </td>

                                <td>%s </td>

                                <td>%s </td>

                                <td>%s </td>

                        </tr>

                </table>""" % (hostname,ip,cpu,mem,disk),"HTML","uft-8")

msg[‘Subject‘] = SUBJECT

msg[‘From‘] = FROM

msg[‘To‘] = TO

try:

        server  = smtplib.SMTP()      //建立一個SMTP對象

        server.connect(HOST,"25")      //通過connect方法連結到smtp主機

        server.starttls()             //啟動安全傳輸模式

        server.login("[email protected]","passwordxx")  // 登入163郵箱 校正使用者,密碼

        server.sendmail(FROM, [TO], msg.as_string())   //發送郵件  

        server.quit()

        print "郵件發送成功 %s %s %s %s %s" % (hostname,ip,cpu,mem,disk)  /發送成功並列印

except Exception, e:

        print "郵件發送失敗:"+str(e)



運行結果:


650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/8D/0B/wKiom1iDMt-zlZsCAAA2aqwUaFk487.png-wh_500x0-wm_3-wmp_4-s_889160194.png" title="BV1V52MF~WY%}F]QGNOFI]2.png" alt="wKiom1iDMt-zlZsCAAA2aqwUaFk487.png-wh_50" />


大家可以收集自己需要的資訊,通過判斷伺服器的狀態資訊,並發相關資訊郵件。


本文出自 “my_soul” 部落格,請務必保留此出處http://soul455879510.blog.51cto.com/6180012/1893579

python smtp 通過MIMEText類 發送HTML格式的郵件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.