Python发送email的3种方法


Posted in Python onApril 28, 2015

python发送email还是比较简单的,可以通过登录邮件服务来发送,linux下也可以使用调用sendmail命令来发送,还可以使用本地或者是远程的smtp服务来发送邮件,不管是单个,群发,还是抄送都比较容易实现。
先把几个最简单的发送邮件方式记录下,像html邮件,附件等也是支持的,需要时查文档即可
1、登录邮件服务

#!/usr/bin/env python  

# -*- coding: utf-8 -*-  

#python2.7x  

#send_simple_email_by_account.py  @2014-07-30  

#author: orangleliu  

  

''''' 

使用python写邮件 simple 

使用126 的邮箱服务 

'''  

  

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、调用sendmail命令 (linux)

# -*- coding: utf-8 -*-  

#python2.7x  

#send_email_by_.py  

#author: orangleliu  

#date: 2014-08-15  

''''' 

用的是sendmail命令的方式 

 

这个时候邮件还不定可以发出来,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服务来发送(本地或者是远程服务器)
#!/usr/bin/env python  

# -*- coding: utf-8 -*-  

#python2.7x  

#send_email_by_smtp.py  

#author: orangleliu  

#date: 2014-08-15  

''''' 

linux 下使用本地的smtp服务来发送邮件 

前提要开启smtp服务,检查的方法 

#ps -ef|grep sendmail 

#telnet localhost 25 

 

这个时候邮件还不定可以发出来,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 相关文章推荐
Python批量修改文本文件内容的方法
Apr 29 Python
vscode 远程调试python的方法
Dec 01 Python
Python DataFrame 设置输出不显示index(索引)值的方法
Jun 07 Python
OpenCV2从摄像头获取帧并写入视频文件的方法
Aug 03 Python
3个用于数据科学的顶级Python库
Sep 29 Python
Python设计模式之策略模式实例详解
Jan 21 Python
对python读取CT医学图像的实例详解
Jan 24 Python
解决安装python3.7.4报错Can''t connect to HTTPS URL because the SSL module is not available
Jul 31 Python
python用WxPython库实现无边框窗体和透明窗体实现方法详解
Feb 21 Python
VSCode配合pipenv搞定虚拟环境的实现方法
May 17 Python
Python数据可视化实现漏斗图过程图解
Jul 20 Python
Python的3种运行方式:命令行窗口、Python解释器、IDLE的实现
Oct 10 Python
Python中使用partial改变方法默认参数实例
Apr 28 #Python
调试Python程序代码的几种方法总结
Apr 28 #Python
解析Python中的异常处理
Apr 28 #Python
python调用java模块SmartXLS和jpype修改excel文件的方法
Apr 28 #Python
Python EOL while scanning string literal问题解决方法
Sep 18 #Python
python中尾递归用法实例详解
Apr 28 #Python
在Python中使用元类的教程
Apr 28 #Python
You might like
Syphon 虹吸式咖啡壶冲煮–拨动法
2021/03/03 冲泡冲煮
WordPress中用于获取及自定义头像图片的PHP脚本详解
2015/12/17 PHP
PHP微信开发之文本自动回复
2016/06/23 PHP
js 图片等比例缩放代码
2010/05/13 Javascript
JSDoc 介绍使用规范JsDoc的使用介绍
2011/02/12 Javascript
Javascript引用指针使用介绍
2012/11/07 Javascript
javascript游戏开发之《三国志曹操传》零部件开发(二)人物行走的实现
2013/01/23 Javascript
jquery中常用的SET和GET$(”#msg”).html循环介绍
2013/10/09 Javascript
js获取客户端外网ip的简单实例
2013/11/21 Javascript
js报$ is not a function 的问题的解决方法
2014/01/20 Javascript
JavaScript事件委托技术实例分析
2015/02/06 Javascript
基于BootStrap Metronic开发框架经验小结【一】框架总览及菜单模块的处理
2016/05/12 Javascript
详解用node-images 打造简易图片服务器
2017/05/08 Javascript
React Native中导航组件react-navigation跨tab路由处理详解
2017/10/31 Javascript
node中使用es6/7/8(支持性与性能)
2019/03/28 Javascript
JS实现点星星消除小游戏
2020/03/24 Javascript
Python中的二叉树查找算法模块使用指南
2014/07/04 Python
python实现数独算法实例
2015/06/09 Python
Python实现删除当前目录下除当前脚本以外的文件和文件夹实例
2015/07/27 Python
python实现拓扑排序的基本教程
2018/03/11 Python
Flask Web开发入门之文件上传(八)
2018/08/17 Python
如何基于python测量代码运行时间
2019/12/25 Python
python实现小程序推送页面收录脚本
2020/04/20 Python
Java爬虫技术框架之Heritrix框架详解
2020/07/22 Python
python入门教程之基本算术运算符
2020/11/13 Python
CSS3实现曲线阴影和翘边阴影
2016/05/03 HTML / CSS
露营世界:Camping World
2017/02/02 全球购物
激光脱毛、蓝光和护肤:Tria Beauty
2019/03/28 全球购物
Tomcat Mysql datasource数据源配置
2015/12/28 面试题
2014年两会学习心得范例
2014/03/17 职场文书
2014年度个人总结范文
2015/03/09 职场文书
2015纪念九一八事变84周年演讲稿
2015/03/19 职场文书
2015年保险公司工作总结
2015/04/24 职场文书
MySQL如何快速创建800w条测试数据表
2022/03/17 MySQL
经典《舰娘》游改全新动画预告 预定11月开播
2022/04/01 日漫
python对文档中元素删除,替换操作
2022/04/02 Python