標籤: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格式的郵件