lfjigu 发表于 2018-8-12 14:42:25

Python 自动化运维 smtplib-777777

import smtplib  
from email.mime.text import MIMEText    ##导入MIMEText类
  
import string
  
HOST = "smtp.163.com"
  
SUBJECT = " TEST"
  
TO = "1287112485@qq.com"
  
FROM = "18502942450@163.com"
  
msg = MIMEText("""               ##创建MIME对象,制定HTML内容,类型,字符编码等
  
<html>
  

  
<head>
  
    <meta http-equiv="Content-Type"
  
          content="text/html; " />
  
    <title></title>
  
    <style type="text/css">
  
      table.diff {font-family:Courier; border:medium;}
  
      .diff_header {background-color:#e0e0e0}
  
      td.diff_header {text-align:right}
  
      .diff_next {background-color:#c0c0c0}
  
      .diff_add {background-color:#aaffaa}
  
      .diff_chg {background-color:#ffff77}
  
      .diff_sub {background-color:#ffaaaa}
  
    </style>
  
</head>
  

  
<body>
  

  
    <table class="diff" id="difflib_chg_to0__top"
  
         cellspacing="0" cellpadding="0" rules="groups" >
  
      <colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
  
      <colgroup></colgroup> <colgroup></colgroup> <colgroup></colgroup>
  

  
      <tbody>
  
            <tr><td class="diff_next" id="difflib_chg_to0__0"><a href="#difflib_chg_to0__0">f</a></td><td class="diff_header" id="from0_1">1</td><td nowrap="nowrap"></td><td class="diff_next"><a href="#difflib_chg_to0__0">f</a></td><td class="diff_header" id="to0_1">1</td><td nowrap="nowrap"></td></tr>
  
            <tr><td class="diff_next"><a href="#difflib_chg_to0__top">t</a></td><td class="diff_header" id="from0_2">2</td><td nowrap="nowrap">wwwwdwed</td><td class="diff_next"><a href="#difflib_chg_to0__top">t</a></td><td class="diff_header" id="to0_2">2</td><td nowrap="nowrap">wwwwdwed<span class="diff_add">efwe</span></td></tr>
  
            <tr><td class="diff_next"></td><td class="diff_header" id="from0_3">3</td><td nowrap="nowrap"><span class="diff_sub">wwwdwqed&nbsp;</span></td><td class="diff_next"></td><td class="diff_header" id="to0_3">3</td><td nowrap="nowrap"><span class="diff_add">wwdwqedewf</span></td></tr>
  
            <tr><td class="diff_next"></td><td class="diff_header" id="from0_4">4</td><td nowrap="nowrap">wwefwe</td><td class="diff_next"></td><td class="diff_header" id="to0_4">4</td><td nowrap="nowrap">wwefwe</td></tr>
  
            <tr><td class="diff_next"></td><td class="diff_header" id="from0_5">5</td><td nowrap="nowrap">wwgwte</td><td class="diff_next"></td><td class="diff_header" id="to0_5">5</td><td nowrap="nowrap">wwgwte</td></tr>
  
            <tr><td class="diff_next"></td><td class="diff_header" id="from0_6">6</td><td nowrap="nowrap">wtgq</td><td class="diff_next"></td><td class="diff_header" id="to0_6">6</td><td nowrap="nowrap">wtgq</td></tr>
  
      </tbody>
  
    </table>
  
    <table class="diff" summary="Legends">
  
      <tr> <th colspan="2"> Legends </th> </tr>
  
      <tr> <td> <table border="" summary="Colors">
  
                      <tr><th> Colors </th> </tr>
  
                      <tr><td class="diff_add">&nbsp;Added&nbsp;</td></tr>
  
                      <tr><td class="diff_chg">Changed</td> </tr>
  
                      <tr><td class="diff_sub">Deleted</td> </tr>
  
                  </table></td>
  
             <td> <table border="" summary="Links">
  
                      <tr><th colspan="2"> Links </th> </tr>
  
                      <tr><td>(f)irst change</td> </tr>
  
                      <tr><td>(n)ext change</td> </tr>
  
                      <tr><td>(t)op</td> </tr>
  
                  </table></td> </tr>
  
    </table>
  
</body>
  

  
</html>
  
""","html",'utf-8')
  
msg["Subject"] = SUBJECT##邮件主题
  
msg["From"] = FROM
  
msg["to" ] = TO
  
try:
  
    server = smtplib.SMTP()
  
    server.connect(HOST,"25")
  
    server.starttls()
  
    server.login("18502942450@163.com","ws128711")
  
    server.sendmail(FROM,,msg.as_string())
  
    server.quit()      ##断开连接
  
    print "ok"
  
except Exception,e:
  
    print "error:" + str(e)
页: [1]
查看完整版本: Python 自动化运维 smtplib-777777