1
您從phpmailer得到這個錯誤。當smtp郵件返回「密碼不被接受從服務器」
"Password not accepted from server: 535 Incorrect authentication data"
這是什麼原因造成的?
您從phpmailer得到這個錯誤。當smtp郵件返回「密碼不被接受從服務器」
"Password not accepted from server: 535 Incorrect authentication data"
這是什麼原因造成的?
您必須確保爲登錄指定的Username
與SetFrom
電子郵件地址相同。
這將返回一個錯誤:
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "password"; // GMAIL password
$mail->SetFrom('[email protected]', 'Pagelinks');
這不應該。
$mail->Username = "[email protected]"; // GMAIL username
$mail->Password = "password"; // GMAIL password
$mail->SetFrom('[email protected]', 'Pagelinks');
當Username
和SetFrom
不認證匹配失敗(根據谷歌上找到的文章)。