465(ssl)错误 2019-02-02 07:53:39 SMTP错误:无法连接到服务器:(0) SMTP connect()失败。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting 邮件错误:SMTP connect()失败。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
587错误: 2019-02-02 08:00:02客户->服务器:EHLO 10.10.11.65 2019-02-02 08:00:02客户->服务器:STARTTLS SMTP错误:无法连接到SMTP主机。 2019-02-02 08:00:03客户->服务器:退出 2019-02-02 08:00:03 SMTP connect()失败。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting 邮件错误:SMTP connect()失败。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
这是我的代码,我在使用主机名,服务器号为EX:10.10.10.10 用户名和密码是我的电子邮件ID用户名和密码
<?php
require("src/PHPMailer.php");
require("src/SMTP.php");
require("./src/Exception.php");
$mail = new PHPMailer\PHPMailer\PHPMailer();
$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 = 'xx.xx.xx.xx'; //server ip
$mail->Port = 465; // or 587
$mail->IsHTML(true);
$mail->Username = "myid@domainname.com";
$mail->Password = "CooW0rk@l#2k19";
$mail->SetFrom("myid@domainname.com");
$mail->Subject = "Test";
$mail->Body = "hello";
$mail->AddAddress("to_id@domainname.com");
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message has been sent";
}
?>