经过大量搜索后,我无法找到如何使用smtplib.sendmail发送给多个收件人。问题是每次发送邮件时邮件标题似乎包含多个地址,但事实上只有第一个收件人才会收到电子邮件。
问题似乎是email.Message
模块需要的内容与smtplib.sendmail()
函数不同。
简而言之,要发送给多个收件人,您应将标头设置为逗号分隔的电子邮件地址字符串。但sendmail()
参数to_addrs
应该是电子邮件地址列表。
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
import smtplib
msg = MIMEMultipart()
msg["Subject"] = "Example"
msg["From"] = "me@example.com"
msg["To"] = "malcom@example.com,reynolds@example.com,firefly@example.com"
msg["Cc"] = "serenity@example.com,inara@example.com"
body = MIMEText("example email body")
msg.attach(body)
smtp = smtplib.SMTP("mailhost.example.com", 25)
smtp.sendmail(msg["From"], msg["To"].split(",") + msg["Cc"].split(","), msg.as_string())
smtp.quit()
答案 0 :(得分:265)
这确实有效,我花了很多时间尝试多种变体。
import smtplib
from email.mime.text import MIMEText
s = smtplib.SMTP('smtp.uk.xensource.com')
s.set_debuglevel(1)
msg = MIMEText("""body""")
sender = 'me@example.com'
recipients = ['john.doe@example.com', 'john.smith@example.co.uk']
msg['Subject'] = "subject line"
msg['From'] = sender
msg['To'] = ", ".join(recipients)
s.sendmail(sender, recipients, msg.as_string())
答案 1 :(得分:122)
msg['To']
需要是一个字符串:
msg['To'] = "a@b.com, b@b.com, c@b.com"
虽然recipients
中的sendmail(sender, recipients, message)
需要是一个列表:
sendmail("a@a.com", ["a@b.com", "b@b.com", "c@b.com"], "Howdy")
答案 2 :(得分:35)
您需要了解电子邮件的可见地址与投放之间的区别。
msg["To"]
基本上是印在信上的内容。它实际上没有任何影响。除了您的电子邮件客户端,就像常规邮政官员一样,将假设这是您要将电子邮件发送给的人。
然而,实际交付可能会有很大不同。所以你可以将电子邮件(或副本)放入完全不同的人的邮箱中。
这有多种原因。例如转发。 To:
标题字段在转发时不会更改,但是电子邮件会被放入另一个邮箱中。
smtp.sendmail
命令现在负责实际传递。 email.Message
仅是信件的内容,而不是交付。
在低级别SMTP
中,您需要逐个提供收据,这就是为什么地址列表(不包括名称!)是合理的API。
对于标题,它还可以包含例如名称,例如To: First Last <email@addr.tld>, Other User <other@mail.tld>
。 因此不建议使用您的代码示例,因为它无法传递此邮件,因为只需将其拆分为,
您仍然没有有效的地址!
答案 3 :(得分:13)
它对我有用。
import smtplib
from email.mime.text import MIMEText
s = smtplib.SMTP('smtp.uk.xensource.com')
s.set_debuglevel(1)
msg = MIMEText("""body""")
sender = 'me@example.com'
recipients = 'john.doe@example.com,john.smith@example.co.uk'
msg['Subject'] = "subject line"
msg['From'] = sender
msg['To'] = recipients
s.sendmail(sender, recipients.split(','), msg.as_string())
答案 4 :(得分:9)
我尝试了下面的内容,它就像一个魅力:)
rec_list = ['first@example.com', 'second@example.com']
rec = ', '.join(rec_list)
msg['To'] = rec
send_out = smtplib.SMTP('localhost')
send_out.sendmail(me, rec_list, msg.as_string())
答案 5 :(得分:6)
我想出了这个可导入的模块功能。它在此示例中使用gmail电子邮件服务器。它分为标题和消息,因此您可以清楚地看到最新情况:
import smtplib
def send_alert(subject=""):
to = ['email@one.com', 'email2@another_email.com', 'a3rd@email.com']
gmail_user = 'me@gmail.com'
gmail_pwd = 'my_pass'
smtpserver = smtplib.SMTP("smtp.gmail.com", 587)
smtpserver.ehlo()
smtpserver.starttls()
smtpserver.ehlo
smtpserver.login(gmail_user, gmail_pwd)
header = 'To:' + ", ".join(to) + '\n' + 'From: ' + gmail_user + '\n' + 'Subject: ' + subject + '\n'
msg = header + '\n' + subject + '\n\n'
smtpserver.sendmail(gmail_user, to, msg)
smtpserver.close()
答案 6 :(得分:6)
实际上问题是SMTP.sendmail和email.MIMEText需要两个不同的东西。
email.MIMEText为电子邮件正文设置“收件人:”标题。它仅用于向另一端的人显示结果,并且像所有电子邮件标题一样,必须是单个字符串。 (请注意,它实际上不必与实际收到消息的人有任何关系。)
另一方面,SMTP.sendmail设置SMTP协议消息的“信封”。它需要一个Python字符串列表,每个字符串都有一个地址。所以,你需要做的是结合你收到的两个回复。将msg ['To']设置为单个字符串,但将原始列表传递给sendmail:
emails = ['a.com','b.com', 'c.com']
msg['To'] = ', '.join( emails )
....
s.sendmail( msg['From'], emails, msg.as_string())
答案 7 :(得分:5)
我几个月前就想到了这一点blogged about it。摘要是:
如果要使用smtplib向多个收件人发送电子邮件,请使用email.Message.add_header('To', eachRecipientAsString)
添加邮件,然后在调用sendmail方法时,use email.Message.get_all('To')
将邮件发送给所有收件人。 Cc和Bcc接收者同上。
答案 8 :(得分:3)
Below worked for me.
It sends email to multiple with attachment - "To", "Cc" & "Bcc" successfully.
toaddr = ['mailid_1','mailid_2']
cc = ['mailid_3','mailid_4']
bcc = ['mailid_5','mailid_6']
subject = 'Email from Python Code'
fromaddr = 'sender_mailid'
message = "\n !! Hello... !!"
msg['From'] = fromaddr
msg['To'] = ', '.join(toaddr)
msg['Cc'] = ', '.join(cc)
msg['Bcc'] = ', '.join(bcc)
msg['Subject'] = subject
s.sendmail(fromaddr, (toaddr+cc+bcc) , message)
答案 9 :(得分:2)
嗯,this asnwer方法中的方法对我不起作用。我不知道,也许这是一个Python3(我使用的是3.4版本)或与gmail相关的问题,但经过一些尝试后,对我有用的解决方案就是行
s.send_message(msg)
而不是
s.sendmail(sender, recipients, msg.as_string())
答案 10 :(得分:1)
我使用python 3.6,以下代码对我有用
email_send = 'xxxxx@xxx.xxx,xxxx@xxx.xxx'
server.sendmail(email_user,email_send.split(','),text)
答案 11 :(得分:1)
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
def sender(recipients):
body = 'Your email content here'
msg = MIMEMultipart()
msg['Subject'] = 'Email Subject'
msg['From'] = 'your.email@gmail.com'
msg['To'] = (', ').join(recipients.split(','))
msg.attach(MIMEText(body,'plain'))
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login('your.email@gmail.com', 'yourpassword')
server.send_message(msg)
server.quit()
if __name__ == '__main__':
sender('email_1@domain.com,email_2@domain.com')
它仅对我有用,它具有send_message函数并在带有收件人3.6的列表中使用join函数。
答案 12 :(得分:0)
您可以在文本文件
上编写recpient电子邮件时尝试此操作from email.mime.text import MIMEText
from email.header import Header
import smtplib
f = open('emails.txt', 'r').readlines()
for n in f:
emails = n.rstrip()
server = smtplib.SMTP('smtp.uk.xensource.com')
server.ehlo()
server.starttls()
body = "Test Email"
subject = "Test"
from = "me@example.com"
to = emails
msg = MIMEText(body,'plain','utf-8')
msg['Subject'] = Header(subject, 'utf-8')
msg['From'] = Header(from, 'utf-8')
msg['To'] = Header(to, 'utf-8')
text = msg.as_string()
try:
server.send(from, emails, text)
print('Message Sent Succesfully')
except:
print('There Was An Error While Sending The Message')
答案 13 :(得分:0)
这里有很多技术上或部分正确的答案。在阅读了每个人的答案后,我想出了一个更可靠/通用的电子邮件功能。我已经确认它有效,您可以为正文传递 HTML 或纯文本。请注意,此代码不包含附件代码:
import smtplib
import socket
# Import the email modules we'll need
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
#
# @param [String] email_list
# @param [String] subject_line
# @param [String] error_message
def sendEmailAlert(email_list="default@email.com", subject_line="Default Subject", error_message="Default Error Message"):
hostname = socket.gethostname()
# Create message
msg = MIMEMultipart()
msg['Subject'] = subject_line
msg['From'] = f'no-reply@{hostname}'
msg['To'] = email_list
msg.attach(MIMEText(error_message, 'html'))
# Send the message via SMTP server
s = smtplib.SMTP('localhost') # Change for remote mail server!
# Verbose debugging
s.set_debuglevel(2)
try:
s.sendmail(msg['From'], msg['To'].split(","), msg.as_string())
except Exception as e:
print(f'EMAIL ISSUE: {e}')
s.quit()
这显然可以修改为使用原生 Python 日志记录。我只是提供一个坚实的核心功能。我也不能强调这一点,sendmail()
想要一个 List
而不是 String
!函数适用于Python3.6+