gpt4 book ai didi

python - smtplib.SMTPAuthenticationError : (535, '5.7.3 Authentication unsuccessful' )

转载 作者:行者123 更新时间:2023-12-03 16:44:16 27 4
gpt4 key购买 nike

我正在尝试使用 smtplib 在 python 2.7 中发送邮件。下面的代码非常简单:

import smtplib

def main(argv=None):

sender = 'abc@gmail.com'
receivers = ['xyz@gmail.com']

message = """
This is a test e-mail message.
"""

smtpObj = smtplib.SMTP('xyz@gmail.com',25)

smtpObj.login('abc', 'pwd')
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"


if __name__ == '__main__':
main()
现在,当我执行以下代码时,我不断收到此异常:
smtplib.SMTPAuthenticationError: (535, '5.7.3 Authentication unsuccessful').

最佳答案

实际上,当我尝试在 python 控制台上执行相同的语句时,我才知道密码不正确,这是由于不同的字符编码。

对于所有其他用户,请不要复制粘贴

two muppets

关于python - smtplib.SMTPAuthenticationError : (535, '5.7.3 Authentication unsuccessful' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38602682/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com