我在一台 Linux 机器上。我的公司有一个已经配置好的电子邮件交换服务器。我正在使用 Python 脚本尝试登录电子邮件服务器,以便以编程方式发送电子邮件。这是我到目前为止所拥有的 -
server = smtplib.SMTP('email-0.abc.com', 25)
server.set_debuglevel(1)
server.ehlo_or_helo_if_needed()
server.login('abc/johndoe', 'pwd')
但是,在 server.login 命令中,我收到错误消息
raise SMTPException("No suitable authentication method found.")
SMTPException: No suitable authentication method found.
请问有谁知道是什么问题?
谢谢