Python發(fā)送email的3種方法
python發(fā)送email還是比較簡單的,可以通過登錄郵件服務(wù)來發(fā)送,linux下也可以使用調(diào)用sendmail命令來發(fā)送,還可以使用本地或者是遠(yuǎn)程的smtp服務(wù)來發(fā)送郵件,不管是單個(gè),群發(fā),還是抄送都比較容易實(shí)現(xiàn)。
先把幾個(gè)最簡單的發(fā)送郵件方式記錄下,像html郵件,附件等也是支持的,需要時(shí)查文檔即可
1、登錄郵件服務(wù)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#python2.7x
#send_simple_email_by_account.py @2014-07-30
#author: orangleliu
'''''
使用python寫郵件 simple
使用126 的郵箱服務(wù)
'''
import smtplib
from email.mime.text import MIMEText
SMTPserver = 'smtp.126.com'
sender = 'liuzhizhi123@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-15
'''''
用的是sendmail命令的方式
這個(gè)時(shí)候郵件還不定可以發(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 = "957748332@qq.com"
r = "zhizhi.liu@chinacache.com"
mail_send(s, r)
3、使用smtp服務(wù)來發(fā)送(本地或者是遠(yuǎn)程服務(wù)器)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#python2.7x
#send_email_by_smtp.py
#author: orangleliu
#date: 2014-08-15
'''''
linux 下使用本地的smtp服務(wù)來發(fā)送郵件
前提要開啟smtp服務(wù),檢查的方法
#ps -ef|grep sendmail
#telnet localhost 25
這個(gè)時(shí)候郵件還不定可以發(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 = "zhizhi.liu@chinacache.com"
r = s
mail_send(s, r)
- python smtplib發(fā)送多個(gè)email聯(lián)系人的實(shí)現(xiàn)
- python email smtplib模塊發(fā)送郵件代碼實(shí)例
- python中使用smtplib和email模塊發(fā)送郵件實(shí)例
- 用smtplib和email封裝python發(fā)送郵件模塊類分享
- 詳解Python發(fā)送email的三種方式
- python3.5 email實(shí)現(xiàn)發(fā)送郵件功能
- Python使用QQ郵箱發(fā)送Email的方法實(shí)例
- Python使用email模塊對郵件進(jìn)行編碼和解碼的實(shí)例教程
- 在Python的Flask框架中驗(yàn)證注冊用戶的Email的方法
- Python實(shí)現(xiàn)發(fā)送email的幾種常用方法
- Python調(diào)用SMTP服務(wù)自動發(fā)送Email的實(shí)現(xiàn)步驟
相關(guān)文章
Python中round()函數(shù)實(shí)現(xiàn)數(shù)值的四舍五入
這篇文章主要給大家介紹了關(guān)于Python中round()函數(shù)實(shí)現(xiàn)數(shù)值的四舍五入,round()是python自帶的一個(gè)函數(shù),用于數(shù)字的四舍五入,文中通過代碼介紹的非常詳細(xì),需要的朋友可以參考下2024-05-05
python控制臺實(shí)現(xiàn)tab補(bǔ)全和清屏的例子
今天小編就為大家分享一篇python控制臺實(shí)現(xiàn)tab補(bǔ)全和清屏的例子,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-08-08
Python利用VideoCapture讀取視頻或攝像頭并進(jìn)行保存
這篇文章主要為大家介紹一下OpenCV中cv2.VideoCapture函數(shù)的使用,并利用cv2.VideoCapture讀取視頻或攝像頭以及進(jìn)行保存幀圖像或視頻,感興趣的小伙伴可以了解一下2022-07-07
閉包在python中的應(yīng)用之translate和maketrans用法詳解
這篇文章主要介紹了閉包在python中的應(yīng)用之translate和maketrans用法,是比較實(shí)用的技巧,需要的朋友可以參考下2014-08-08
python用pyinstaller封裝exe雙擊后瘋狂閃退解決辦法
本文主要介紹了python用pyinstaller封裝exe雙擊后瘋狂閃退解決辦法,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-11-11
python 實(shí)現(xiàn)對文件夾中的圖像連續(xù)重命名方法
今天小編就為大家分享一篇python 實(shí)現(xiàn)對文件夾中的圖像連續(xù)重命名方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-10-10

