使用Python和O365将电子邮件发送给多个收件人

时间:2018-06-19 13:54:36

标签: python-3.x office365

我需要向多个收件人发送电子邮件,但是只有一个收件人正在接收它。下面是我正在使用的代码。

from O365 import Message

o365_auth = ('user.com', 'Pwd')
m = Message(auth=o365_auth)
m.setRecipients('user1.com','user2.com')
m.setSubject('abc found.')
m.setBody('''abc found.'

Regards
Shashi S Singh''')
m.sendMessage()

但是一旦触发,它只会向第一个收件人发送电子邮件,而期望是向两个收件人发送电子邮件。

1 个答案:

答案 0 :(得分:0)

plot(rho, pwr, type="l", xlab=expression(rho), ylab="Power")

创建列表并使用列表就可以了。