嗨,我剛剛上傳了一個網站,並與郵件服務得到此錯誤。Laravel郵件錯誤
Connection could not be established with host smtp.gmail.com [Connection refused #111]
這是我在我的mail.php文件中的設置。
return array(
'driver' => 'smtp',
'host' => 'smtp.gmail.com',
'port' => 587,
'from' => array('address' => '[email protected]', 'name' => 'Company Name'),
'encryption' => 'tls',
'username' => '*******',
'password' => '********',
'sendmail' => '/usr/sbin/sendmail -bs',
'pretend' => false,
);
這工作完全在本地我的系統上,但是當我把它上傳現場,它給我的錯誤,請提供一個項目,由於瀕臨幫助時!
端口是爲了打開這個工作。嘗試使用ping/telnet檢查相同,並檢查可能阻塞連接的防火牆設置。 –