从代理后面发送电子邮件时出现HTTP身份验证错误

时间:2019-09-20 06:00:57

标签: python email proxy

我正在使用以下python代码,并且正在抛出 HTTP错误:407:需要身份验证。

我传递了正确的电子邮件ID和密码,但是问题仍然存在。任何想法为什么我会看到此错误

socks.set_default_proxy(socks.HTTP,'proxy.proxy.com',9090,True,userid,pwd)
socks.wrapmodule(smtplib)

smtp_server = "smtp.gmail.com"
port = 587
sender_email = "abc@gmail.com"
password = "pwd"
message = "Test message from python"
server = smtplib.SMTP(smtp_server,port)
server.starttls()
server.login(sender_email,password)
server.sendmail(sender_email, "xxx@gmail.com", message)
server.quit()

0 个答案:

没有答案