4
我想在Zend框架中使用gmail帳戶發送電子郵件。這是我走到這一步:在Zend框架中使用gmail發送電子郵件
$mailTransport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', array(
'auth' => 'login',
'username' => '[email protected]',
'password' => 'password',
'port' => '587',
'ssl' => 'tls',
));
Zend_Mail::setDefaultTransport($mailTransport);
$mail = new Zend_Mail();
$mail->setBodyText('This is the text of the mail.');
$mail->setFrom('[email protected]', 'sender');
$mail->addTo('[email protected]', 'receiver');
$mail->setSubject('TestSubject');
$mail->send();
有了這個代碼,我得到以下錯誤:
Message: Unable to connect via TLS
我怎樣才能解決呢?我有一個默認的XAMPP安裝設置,在php.ini中沒有SMTP設置。
可能重複http://stackoverflow.com/questions/1094137/zend-mail-gmail-smtp – Rikesh 2012-07-19 13:13:10