Replies: 0
Hi
we had problem with sending email and we found a solution that maybe can help other users.
We could not send email until we added the following phpmailer settings to the wp_mail_smtp class.
$phpmailer->smtpConnect(
array(
“ssl” => array(
“verify_peer” => false,
“verify_peer_name” => false,
“allow_self_signed” => true
)
)
);
The problem was with our godaddy certificate, which looks like the plugin has problem to recognize. In a future version it could help to let the user set this settings?
What do you think?
Vittorio