python寫的簡單發送郵件的指令碼

來源:互聯網
上載者:User

近來有些東西需要監控警示發郵件,然後在網上找了點材料,自己寫了一個簡單發送郵件的指令碼,主要就是運用python的smtplib模組,分享給大家看一下:


 
  1. #!/usr/bin/env python

  2. # -*- coding: utf-8 -*-

  3. #匯入smtplib和MIMEText

  4. import smtplib,sys

  5. from email.mime.text import MIMEText

  6. def send_mail(sub,content):

  7. #############

  8. #要發給誰,這裡發給1個人

  9.    mailto_list=["1234567@gyyx.cn"]

  10. #####################

  11. #設定伺服器,使用者名稱、口令以及郵箱的尾碼

  12.    mail_host="mail.gyyx.cn"

  13.    mail_user="1234567@gyyx.cn"

  14.    mail_pass="123456677890"

  15.    mail_postfix="gyyx.cn"

  16. ######################

  17. '''''

  18.    to_list:發給誰

  19.    sub:主題

  20.    content:內容

  21.    send_mail("aaa@126.com","sub","content")

  22.    '''

  23.    me=mail_user+"<"+mail_user+"@"+mail_postfix+">"

  24.    msg = MIMEText(content,_charset='gbk')

  25.    msg['Subject'] = sub

  26.    msg['From'] = me

  27.    msg['To'] = ";".join(mailto_list)

  28. try:

  29.        s = smtplib.SMTP()

  30.        s.connect(mail_host)

  31.        s.login(mail_user,mail_pass)

  32.        s.sendmail(me, mailto_list, msg.as_string())

  33.        s.close()

  34. returnTrue

  35. except Exception, e:

  36. print str(e)

  37. returnFalse

  38. if __name__ == '__main__':

  39. if send_mail(u'這是python測試郵件',u'python發送郵件'):

  40. print u'發送成功'

  41. else:

  42. print u'發送失敗'

本文出自 “王偉” 部落格,請務必保留此出處http://wangwei007.blog.51cto.com/68019/978743

相關文章

聯繫我們

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