python 发送邮件

使用yagmail包

import yagmail

# 链接邮箱服务器
yag = yagmail.SMTP(user="124xxxxx@qq.com", password="gkcooyxxxxxxx", host='smtp.qq.com')

# 邮箱正文
contents = ['This is the body, and here is just text http://somedomain/image.png',
            'You can find an audio file attached.', '/local/path/song.mp3']

# 发送邮件
yag.send('lvxxxxxx@xxxxx666.cn', 'Python email test', contents)

"""给多个用户发邮件:
只需要将接收邮箱 变成一个list即可。
"""
# 发送邮件
# yag.send(['aa@126.com', 'bb@qq.com', 'cc@gmail.com'], 'subject', contents)

"""发送附件"""
# 发送附件,只要添加一个附件列表就可以了。
# yag.send('aaaa@126.com', '发送附件', contents, ["d://log.txt","d://baidu_img.jpg"])


"""抄送"""
# 邮箱正文  文本及附件
contents = ['This is the body, and here is just text http://somedomain/image.png',
            'You can find an audio file attached.', '/local/path/song.mp3', '测试邮件', 'test.html', 'logo.jpg',
            'yagmal_test.txt']

# 发送邮件
yag.send(to='xx@xx.com', cc='xxx@xxx.com', subject='发送附件', contents=contents)

使用smtplib

import smtplib
from email.mime.text import MIMEText
from email.header import Header

# 发送邮箱服务器
smtpserver = 'smtp.qq.com'
# 发送邮箱用户
user = '12457xxxxx@qq.com'
# smtp授权码
password = 'gzzzssszzxxxxxxxx'
# 发送邮箱
sender = '1245xxxxx@qq.com'
# 接收邮箱
receiver = 'lvxxxxxx@xxxxx666.cn'
# 发送邮件主题
subject = 'Python email test'


# 编写HTML类型的邮件正文
msg = MIMEText('<html><h1>你好!</h1></html>', 'html', 'utf-8')
msg['Subject'] = Header(subject, 'utf-8')  # 邮件的主题,也可以说是标题
msg['From'] = Header('嗯嗯嗯', 'utf-8')  # 括号里的对应发件人邮箱昵称、发件人邮箱账号
msg['To'] = Header('么么么哒', 'utf-8')  # 括号里的对应收件人邮箱昵称、收件人邮箱账号

# 连接发送邮件
smtp = smtplib.SMTP()
smtp.connect(smtpserver)
smtp.login(user, password)
smtp.sendmail(sender, receiver, msg.as_string())
smtp.quit()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

安澜仙王

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值