Python實現(xiàn)發(fā)送email的幾種常用方法
學過Python的人都知道,實用Python實現(xiàn)發(fā)送email的功能還是比較簡單的,可以通過登錄郵件服務來發(fā)送,linux下也可以使用調(diào)用sendmail命令來發(fā)送,還可以使用本地或者是遠程的smtp服務來發(fā)送郵件,不管是單個,群發(fā),還是抄送都比較容易實現(xiàn)。
本文就把幾個最簡單的發(fā)送郵件方式記錄下來,像html郵件,附件等也是支持的,讀者在需要時可以參考查詢一下。具體方法如下:
1.登錄郵件服務
具體代碼如下:
#!/usr/bin/env python # -*- coding: utf-8 -*- #python2.7x #send_simple_email_by_account.py @2014-08-18 #author: orangleliu ''' 使用python寫郵件 simple 使用126 的郵箱服務 ''' import smtplib from email.mime.text import MIMEText SMTPserver = 'smtp.126.com' sender = '12345678@126.com' password = "xxxx" message = 'I send a message by Python. 你好' msg = MIMEText(message) msg['Subject'] = 'Test Email by Python' msg['From'] = sender msg['To'] = destination mailserver = smtplib.SMTP(SMTPserver, 25) mailserver.login(sender, password) mailserver.sendmail(sender, [sender], msg.as_string()) mailserver.quit() print 'send email success'
2.調(diào)用sendmail命令 (linux)
具體代碼如下:
# -*- coding: utf-8 -*- #python2.7x #send_email_by_.py #author: orangleliu #date: 2014-08-18 ''' 用的是sendmail命令的方式 這個時候郵件還不定可以發(fā)出來,hostname配置可能需要更改 ''' from email.mime.text import MIMEText from subprocess import Popen, PIPE def get_sh_res(): p = Popen(['/Application/2.0/nirvana/logs/log.sh'], stdout=PIPE) return str(p.communicate()[0]) def mail_send(sender, recevier): print "get email info..." msg = MIMEText(get_sh_res()) msg["From"] = sender msg["To"] = recevier msg["Subject"] = "Yestoday interface log results" p = Popen(["/usr/sbin/sendmail", "-t"], stdin=PIPE) res = p.communicate(msg.as_string()) print 'mail sended ...' if __name__ == "__main__": s = "12345678@qq.com" r = "123456@163.com" mail_send(s, r)
3 使用smtp服務來發(fā)送(本地或者是遠程服務器)
具體代碼如下:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#python2.7x
#send_email_by_smtp.py
#author: orangleliu
#date: 2014-08-18
'''
linux 下使用本地的smtp服務來發(fā)送郵件
前提要開啟smtp服務,檢查的方法
#ps -ef|grep sendmail
#telnet localhost 25
這個時候郵件還不定可以發(fā)出來,hostname配置可能需要更改
'''
import smtplib
from email.mime.text import MIMEText
from subprocess import Popen, PIPE
def get_sh_res():
p = Popen(['/Application/2.0/nirvana/logs/log.sh'], stdout=PIPE)
return str(p.communicate()[0])
def mail_send(sender, recevier):
msg = MIMEText(get_sh_res())
msg["From"] = sender
msg["To"] = recevier
msg["Subject"] = "Yestoday interface log results"
s = smtplib.SMTP('localhost')
s.sendmail(sender, [recevier], msg.as_string())
s.quit()
print 'send mail finished...'
if __name__ == "__main__":
s = "123456@163.com"
r = s
mail_send(s, r)
相信本文所示方法對于大家進行Python程序設計能夠起到一定的參考借鑒價值。
- python smtplib發(fā)送多個email聯(lián)系人的實現(xiàn)
- python email smtplib模塊發(fā)送郵件代碼實例
- python中使用smtplib和email模塊發(fā)送郵件實例
- 用smtplib和email封裝python發(fā)送郵件模塊類分享
- 詳解Python發(fā)送email的三種方式
- python3.5 email實現(xiàn)發(fā)送郵件功能
- Python使用QQ郵箱發(fā)送Email的方法實例
- Python使用email模塊對郵件進行編碼和解碼的實例教程
- 在Python的Flask框架中驗證注冊用戶的Email的方法
- Python發(fā)送email的3種方法
- Python調(diào)用SMTP服務自動發(fā)送Email的實現(xiàn)步驟
相關文章
使用python批量讀取word文檔并整理關鍵信息到excel表格的實例
今天小編就為大家分享一篇使用python批量讀取word文檔并整理關鍵信息到excel表格的實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-11-11
跟老齊學Python之通過Python連接數(shù)據(jù)庫
現(xiàn)在在做python的時候需要用到數(shù)據(jù)庫,于是自己重新整理了一下數(shù)據(jù)庫的知識,并且熟悉了python中MysqlDB模塊的功能和函數(shù)等接口,現(xiàn)在系統(tǒng)地來總結一下吧2014-10-10

