gpt4 book ai didi

ssl - PHPMailer 验证对等 SSL

转载 作者:行者123 更新时间:2023-12-04 22:41:29 24 4
gpt4 key购买 nike

完整代码如下。如果我改变 verify_peer 真实 它将返回 SMTP 错误:无法连接到服务器:(0)。
但是已经安装了 SSL。您可以查看here
如何解决这个问题?我不想跳过验证对等方。
服务器 nginx。 (CLOUDFLARE SSL)

$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 1; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for Gmail
$mail->Host = "smtp.mail.ru";
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username = "somemail@mail.ru"; // SMTP account username example
$mail->Password = "somepass"; // SMTP account password example
$mail->SetFrom("somemail@mail.ru");
$mail->Subject = "Test";
$mail->Body = "hello";
$mail->AddAddress("somemail2@mail.ru");
$mail->SMTPOptions = array (
'ssl' => array (
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true
)
);
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message has been sent";
}

最佳答案

解决方案是更改自动签名的 SSL 证书以支持 SNI。您将不得不向您的托管服务提供商询问。
问候

关于ssl - PHPMailer 验证对等 SSL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52783421/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com