2013-05-28 431 views
5

我在我的項目中使用jango smtp設置。SMTP錯誤:535 5.7.8身份驗證憑據無效

下面是我的代碼:

funcation sendmail() 
{ 

$this->Email->smtpOptions = array(

    'timeout' => '30', 

    'port' => '25', 

    'host' => 'relay.jangosmtp.net', 

    'username' => 'xxxx', 

    'password' => '1234567' 

); 
} 

sendmail的功能提供了以下錯誤:

SMTP Error: 535 5.7.8 Authentication credentials invalid 

可能是什麼原因?

+1

?你能聯繫我們嗎? –

+0

幹對不起,它的工作,問題是,無效的憑據.. !!我改正糾正一個,它對我工作正常..謝謝..! –

回答

1

這基本上是因爲證書不正確!

可能這會幫助你!

535 Authentication failed. Restarting authentication process. 

如果SMTP客戶端驗證但用戶名或密碼不正確,或該帳戶被禁用,hMailServer發送該錯誤消息給客戶端。

http://support.qualityunit.com/156325-Email-is-not-sent-because-of-failed-authentication

SMTP error 535 authentication failed in roundcube 

SMTP Error (435): Authentication failed 

如果您遇到SMTP錯誤535認證,同時從圓形立方體發送電子郵件失敗,那麼你可以查看下面的東西。

[[email protected] ~]# vi /usr/local/cpanel/base/3rdparty/roundcube/config/main.inc.php 

和您使用的是什麼文件詹改變

$rcmail_config['smtp_user'] = ‘%u’; 
to 
$rcmail_config['smtp_user'] = 」; 
相關問題