您好我正在尝试通过smtplib发送电子邮件,我希望保持用户名与登录用户名不同。我使用共享邮箱时出错,我有权发送和恢复电子邮件和端口号,并且可以与smtp.office365.com一起使用。
任何人都知道为什么?
感谢您的帮助。
server = smtplib.SMTP("ccc.ccccc.com", 88)
server.ehlo()
server.starttls()
me = "xxxxxxx@xxx.com"
my_pwd = "xxxxxxxx"
you = ["xxxxxx@xxx.com"]
msg = MIMEMultipart('alternative')
msg['From'] = "yyyyyyyyy@yyy.com"
msg['To'] = ','.join(you)
body = MIMEText(html, 'html')
msg.attach(body)
server.login(me, my_pwd)
server.sendmail(me, you,msg.as_string())
server.quit()