使用 cpanel localhost 发送电子邮件的基本脚本,因为 phpmailer 不起作用

Basic script for sending email using cpanel localhost as phpmailer not working

提问人:Kev K 提问时间:10/13/2023 更新时间:10/13/2023 访问量:27

问:

有没有人有一个基本的脚本来允许我向自己发送电子邮件,以便我知道有人何时提交了表单?

我已经安装了 Phpmailer,但没有连接到服务器。 我使用 123-reg,他们无法解释为什么。

我收到的错误: SMTP 错误:无法连接到 SMTP 主机。连接失败。stream_socket_enable_crypto():对等证书 CN=localhost'*.prod.sxb1.secureserver.net' did not match expected CN=

我正在寻找使用 smtp 作为 php 在从服务器发送时不会登陆。

我被告知设置需要:

$mail->SMTPDebug = 0;$mail->isSMTP();
$mail->Host = 'localhost';
$mail->SMTPAuth = false;
$mail->SMTPSecure = "none";
$mail->Port = 25;

$mail->mailer = "smtp"`;
电子邮件 smtp localhost cpanel

评论

0赞 Lajos Arpad 10/13/2023
您想从哪个电子邮件发送电子邮件?

答: 暂无答案