3

我有以下代码

import smtplib
from email.mime.text import MIMEText



smtpserver = 'smtp.gmail.com'
AUTHREQUIRED = 1 # if you need to use SMTP AUTH set to 1
smtpuser = 'admin@myhost.com'  # for SMTP AUTH, set SMTP username here
smtppass = '123456'  # for SMTP AUTH, set SMTP password here

RECIPIENTS = ['online8@gmail.com']
SENDER = 'admin@myhost.com'

msg = MIMEText('dsdsdsdsds\n')
msg['Subject'] = 'The contents of iii'
msg['From'] = 'admin@myhost.com'
msg['To'] = ''online8@gmail.com''

mailServer = smtplib.SMTP('smtp.gmail.com',587)
mailServer.ehlo()
mailServer.starttls()
mailServer.ehlo()
mailServer.login(smtpuser, smtppass)
mailServer.sendmail(smtpuser,RECIPIENTS,msg.as_string())
mailServer.close()

这段代码在我的桌面上运行良好。但它失败了这个错误

smtplib.SMTPAuthenticationError: (535, '5.7.1 Username and Password not accepted. Learn more at\n5.7.1 http://mail.google.com/support/bin/answer.py?answer=14257 21sm4713429agd.11')

在我的 linux 服务器上。

不知道出了什么问题,我应该在我的 linux 服务器上打开一些端口吗?

4

2 回答 2

6

端口 587 显然需要打开,但它可能是(或者你不会得到有问题的详细错误消息)。Python 2.5 与 2.6 应该没有区别。我认为这个问题与在当前登录被拒绝的计算机上“解决验证码”有关;按照错误消息中 URL 的详细说明进行操作,即http://mail.google.com/support/bin/answer.py?answer=14257

于 2009-09-06T00:27:50.063 回答
2
import random,time
for i in range(1,100):
    y=random.randint(30,300)
    time.sleep(y)
    print ("Mailing for fun, Mail No: " + str(i))
    msg = MIMEText('Testing mailing \n Mail No:' + str(i))
    msg['Subject'] = 'Mail Number: ' + str(i)

随机化邮件间隔以检查 smtp 行为:)

稍加修改后,我就可以使用它来检查我们的间歇性邮件退回。

于 2011-04-15T08:02:04.390 回答