详解Python发送email的三种方式
作者:mimvp 时间:2023-07-01 07:19:28
Python发送email的三种方式,分别为使用登录邮件服务器、使用smtp服务、调用sendmail命令来发送三种方法
Python发送email比较简单,可以通过登录邮件服务来发送,linux下也可以使用调用sendmail命令来发送,还可以使用本地或者是远程的smtp服务来发送邮件,不管是单个,群发,还是抄送都比较容易实现。本米扑博客先介绍几个最简单的发送邮件方式记录下,像html邮件,附件等也是支持的,需要时查文档即可。
一、登录邮件服务器
通过smtp登录第三方smtp邮箱发送邮件,支持 25 和 465端口
vim python_email_1.py
#!/usr/bin/env python
# -*- coding:utf-8 -*-
#
# author: mimvp.com
# 2015.10.05
import smtplib
from email.mime.text import MIMEText
smtpHost = 'smtp.exmail.qq.com'
sender = 'robot@mimvp.com'
password = "mimvp-password"
receiver = 'yanggang@mimvp.com'
content = 'hello mimvp.com'
msg = MIMEText(content)
msg['Subject'] = 'email-subject'
msg['From'] = sender
msg['To'] = receiver
## smtp port 25
smtpServer = smtplib.SMTP(smtpHost, 25) # SMTP
smtpServer.login(sender, password)
smtpServer.sendmail(sender, receiver, msg.as_string())
smtpServer.quit()
print 'send success by port 25'
## smtp ssl port 465
smtpServer = smtplib.SMTP_SSL(smtpHost, 465) # SMTP_SSL
smtpServer.login(sender, password)
smtpServer.sendmail(sender, receiver, msg.as_string())
smtpServer.quit()
print 'send success by port 465'
执行命令:
$ python python_email_1.py
send success by port 25
send success by port 465
发送结果,会收到两封邮件,截图其中一份邮件如下图:
二、使用smtp服务
测试失败,略过或留言指正
#!/usr/bin/env python
# -*- coding:utf-8 -*-
#
# author: mimvp.com
# 2015.10.05
import smtplib
from email.mime.text import MIMEText
import subprocess
smtpHost = 'smtp.exmail.qq.com'
sender = 'robot@mimvp.com'
password = "mimvp-password"
receiver = 'yanggang@mimvp.com'
content = 'hello mimvp.com'
msg = MIMEText(content)
if __name__ == "__main__":
p = subprocess.Popen(['/usr/sbin/sendmail', '-t'], stdout=subprocess.PIPE)
print(str(p.communicate()))
p_res = str(p.communicate()[0])
msg = MIMEText(p_res)
msg["From"] = sender
msg["To"] = receiver
msg["Subject"] = "hello mimvp.com"
s = smtplib.SMTP(smtpHost)
s.login(sender, password)
s.sendmail(sender, receiver, msg.as_string())
s.quit()
print 'send success'
三、调用sendmail命令
调用本机linux自身sendmail服务发送邮件,不需要启动sendmail后台进程,不需要发送者登录,邮件发送者可以是任意名字,没有限制。
特别注意:sendmail 命令发送邮件,默认用25端口号,由于阿里云、腾讯云等封禁了25端口号,因此本示例需在开通25端口机器上测试
vim python_email_3.py
#!/usr/bin/env python
# -*- coding:utf-8 -*-
#
# author: mimvp.com
# 2015.10.05
from email.mime.text import MIMEText
from subprocess import Popen, PIPE
import commands
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
def send_mail(sender, recevier, subject, html_content):
msg = MIMEText(html_content, 'html', 'utf-8')
msg["From"] = sender
msg["To"] = recevier
msg["Subject"] = subject
p = Popen(["/usr/sbin/sendmail", "-t"], stdin=PIPE)
p.communicate(msg.as_string())
sender = 'robot@mimvp.com'
recevier = 'yanggang@mimvp.com'
subject = 'sendmail-subject'
html_content = 'hello mimvp.com'
send_mail(sender, recevier, subject, html_content)
执行命令:
python python_email_3.py
收件结果:
来源:https://segmentfault.com/a/1190000016721254
标签:Python,发送,email
0
投稿
猜你喜欢
ASP.NET中FCKEDITOR在线编辑器的用法
2023-07-04 23:20:38
PHP mysqli扩展库 预处理技术的使用分析
2023-11-21 07:10:21
教你如何在pycharm中使用less
2021-08-12 13:59:32
在Oracle中向视图中插入数据的方法
2009-02-28 10:42:00
文字解说Golang Goroutine和线程的区别
2023-10-15 18:56:36
Python.append()与Python.expand()用法详解
2022-01-22 20:51:42
提醒各位一下,IE透明会失效的
2009-03-31 12:48:00
PyTorch使用GPU训练的两种方法实例
2023-09-21 08:11:40
详解Python中的字符串格式化
2023-09-10 22:38:14
Python绘图模块 turtle案例代码
2022-12-16 01:28:10
Centos7.2 编译安装PHP7.0.2的步骤
2023-10-08 12:51:29
python爬取豆瓣评论制作词云代码
2023-03-14 04:31:40
磁盘写满导致MySQL复制失败的解决方案
2024-01-18 09:19:15
python Yaml、Json、Dict之间的转化
2022-05-15 02:26:17
MySQL外键创建失败1005原因汇总
2024-01-20 00:16:58
Golang 实现 Redis系列(六)如何实现 pipeline 模式的 redis 客户端
2024-05-13 10:44:23
python通过re正则表达式切割中英文的操作
2021-11-29 04:41:23
asp 关键词高亮显示(不区分大小写)
2011-04-07 10:55:00
Python实战项目刮刮乐的实现详解流程
2021-12-01 23:19:40
Pandas.DataFrame重置列的行名实现(set_index)
2021-08-07 16:56:25