我正在尝试使用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。
答案 0 :(得分:6)
我找到了解决方案: 我有一个由xampp设置的默认php.ini设置。为了通过TLS连接,我们需要启用OpenSSL。要启用OpenSSL,首先在xampp \ php \ ext文件夹中找到php_openssl.dll文件。如果找到此文件,则打开php.ini文件并向其添加以下行:
extension=php_openssl.dll
这就是在xampp中启用openssl的全部内容。这已启用发送电子邮件