SSL verification error
-
Hi,
So when I use your plugin it never authenticates correctly.
I check the box to bypass ssl verification or I get the standard error.
I had a tinker with your plugin, and I found that by removing where you add the ssl options via
$phpmailer->SMTPOptions
, and adding it in again directly after the$phpmailer->isSMTP();
call as
$phpmailer->smtpConnect(
array(
“ssl” => array(
“verify_peer” => false,
“verify_peer_name” => false,
“allow_self_signed” => true
)
)
);
It then works.
Any idea as to why, or has anyone else had this issue?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘SSL verification error’ is closed to new replies.