正在回答 回答被采纳积分+1
2回答
weixin_慕九州9379801
2021-08-30 13:56:34
没办法一健批量发送吗
好帮手慕凡
2021-08-30 13:20:31
同学,你好!
1、可以使用循环遍历不同的收件人信息进行发送;
2、在实现邮件发送的函数里从参数中提取收件人信息和附件文档并添加进邮件主题;
3、发送邮件
参考代码如下:
# coding:utf-8
import time
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.mime.multipart import MIMEMultipart
def send(information):
# 第三方的smtp
mail_host = 'smtp.qq.com'
#发件人信息授权码
mail_user = '发件人邮箱'
mail_pass = '授权码'
sender = '发件人邮箱'
#收件人信息
receivers = [information[1]]
#定义带附邮件对象
message = MIMEMultipart()
message['From'] = Header(sender)
message['Subject'] = Header('python脚本测试', 'utf-8')
#需要发送的附件
attr = MIMEText(open(information[0]+".text", 'rb').read(), 'base64', 'utf-8')
#定义附件格式
attr['Content-Type'] = 'application/octet-stream'
attr['Content-Disposition'] = 'attachment;filename="send.py"'
#将附件添加到邮件主体
message.attach(attr)
message.attach(MIMEText('这是一个带附件的邮件', 'plain', 'utf-8'))
print('send start')
#发送邮件
try:
smtpobj = smtplib.SMTP()
smtpobj.connect(mail_host, 25)
#登录并发送邮件
smtpobj.login(mail_user, mail_pass)
smtpobj.sendmail(sender,receivers, message.as_string())
except smtplib.SMTPException as e:
print('error: %s' % e)
#个人信息
informations=[["小慕","1140315671@qq.com"],["小新","w88856388@163.com"]]
#循环发送邮件
for i in range(2):
send(informations[i])
祝学习愉快~
Python全能工程师
- 参与学习 人
- 提交作业 16233 份
- 解答问题 4470 个
全新版本覆盖5大热门就业方向:Web全栈、爬虫、数据分析、软件测试、人工智能,零基础进击Python全能型工程师,从大厂挑人到我挑大厂,诱人薪资在前方!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星