PHP利用SMTP发邮件出现“Unable to find the socket transport ‘ssl’ – did you forget to enable it when you configured PHP?”的错误提示
该错误表明PHP不支持openssl,未开启openssl扩展所致。
解决方案:
在php.ini中找到“;extension=php_openssl.dll”,去掉前面的分号,重启服务器即可。
PHP利用SMTP发邮件出现“Unable to find the socket transport ‘ssl’ – did you forget to enable it when you configured PHP?”的错误提示
该错误表明PHP不支持openssl,未开启openssl扩展所致。
解决方案:
在php.ini中找到“;extension=php_openssl.dll”,去掉前面的分号,重启服务器即可。