我正在尝试在 Zend 框架中使用 gmail 帐户发送电子邮件。这是我到目前为止得到的:
$mailTransport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', array(
'auth' => 'login',
'username' => 'myaddress@gmail.com',
'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('myaddress@gmail.com', 'sender');
$mail->addTo('reciever@gmail.com', 'receiver');
$mail->setSubject('TestSubject');
$mail->send();
使用此代码,我收到以下错误:
Message: Unable to connect via TLS
我该如何解决?我有一个默认的 XAMPP 安装设置,在 php.ini 中没有 SMTP 设置。