我正尝试在codeigniter中发送邮件,但此错误消息到来
stream_socket_enable_crypto():对等证书CN =
*.hostingcare.net' did not match expected CN=
mail.domain.com”。
我用这个时间搜索了很长时间,但是找到了解决方法。
这是我的配置设置
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'mail.domain.com', // changed this
'smtp_port' => 587,
'smtp_user' => 'info@domain.com',// changed this
'smtp_pass' => '*******',// changed this
'mailtype' => 'html',
'charset' => 'utf-8',
'smtp_crypto' => 'tls',
);