我想在python中发送电子邮件,以下代码有效。但是,我想将该电子邮件作为Google群组发送。由于Google群组没有密码,我无法登录服务器。无论如何我可以解决这个问题吗?
def sendEmail(self, toEmail, subject, message ):
msg = MIMEMultipart()
password = "*****"
msg['From'] = "abc@gmail.com"
msg['To'] = toEmail
msg['Subject'] = subject
msg.attach(MIMEText(message, 'plain'))
server = smtplib.SMTP('smtp.gmail.com: 587')
server.starttls()
server.login(msg['From'],password)
server.sendmail(msg['From'], msg['To'].split(","), msg.as_string())
server.quit()
logging.debug('sent email to %s', (msg['To']))
答案 0 :(得分:0)
它的发送方式就像您应该使用服务帐户代表您发送电子邮件一样。
这是一个很好的指南(不是我写的):https://medium.com/lyfepedia/sending-emails-with-gmail-api-and-python-49474e32c81f