大家好 由于专案需求我必须针对使用者做寄信通知
程式码如下
def SendMail(strRecipient,strSubject,strContent):
s = smtplib.SMTP('mail.XXX.com.tw')
s.set_debuglevel(1)
msg = MIMEMultipart('alternative')
msg.attach(MIMEText(strContent, 'plain'))
sender = 'notice@ekc.com.tw'
msg['Subject'] = strSubject
msg['From'] = sender
msg['To'] = strRecipient
try:
try:
s.sendmail(sender, strRecipient, msg.as_string())
finally:
s.quit()
except smtplib.SMTPRecipientsRefused, e:
print >> DEBUGSTREAM, 'got SMTPRecipientsRefused'
refused = e.recipients
我寄其他人的如gmail信箱是正常寄信
但是遇到hinet.net的信箱则遇到了问题
Relaying denied. Proper authentication required
我系统使用centos 6.4
python 2.7
相信是某个设定有问题
但很抱歉我搜寻很久依然找不出问题来
希望大家能帮忙我找出问题
谢谢大家:)