php – Zend Mail Gmail SMTP

前端之家收集整理的这篇文章主要介绍了php – Zend Mail Gmail SMTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
嗨,我正在尝试从Zend_Mail模块通过gmail发送一些电子邮件.
这是我的代码
$config = array(
    'ssl' => 'tls','port' => 587,'auth' => 'login','username' => 'webmaster@mydomain.com','password' => 'password'
);
$smtpConnection = new Zend_Mail_Transport_Smtp('smtp.gmail.com',$config);

错误

警告:stream_socket_enable_crypto()[streams.crypto]:此流不支持206行/library/Zend/Mail/Protocol/Smtp.PHP中的SSL /加密
无法通过TLS连接

我试着告诉我的托管服务提供商在phi.ini中启用openssl.dll

但他们说这不是必需的,因为服务器在Linux中,并且它不需要启用openssl.dll来使用TLS或SSL.

我的托管服务提供商是错误的还是我在代码中做错了什么.

提前致谢

法比安

openssl.dll是windows openssl扩展.

在Linux上,您需要使用OpenSSL支持编译PHP.
http://www.php.net/manual/en/openssl.installation.php

您需要OpenSSL for PHP套接字和流函数才能使用TLS. Zend使用这些功能,因此需要相同的功能.

原文链接:https://www.f2er.com/php/133343.html

猜你在找的PHP相关文章