Port=25; -6ren">
gpt4 book ai didi

PHPMailer() : Called Mail() without being connected

转载 作者:行者123 更新时间:2023-12-02 04:53:15 25 4
gpt4 key购买 nike

<?php
//error_reporting(E_ALL);
error_reporting(E_STRICT);
require_once('/PHPMailer/class.phpmailer.php');

$mail=new PHPMailer();
$body='blah body';
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host="127.17.7.4"; // SMTP server
$mail->Port=25;
$mail->SMTPDebug=1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only

$mail->SetFrom('name@zenphoto.com', 'First Last');
$mail->AddReplyTo("name@zenphoto.com","First Last");
$address = "myemail@email.com"; //This will be my email address, that I want to receive the mail on
$mail->AddAddress($address);
$mail->Subject = "PHPMailer Test Subject via mail(), basic";
$mail->MsgHTML($body);
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>

我正在尝试使用 PHPMailer 发送邮件,但我一直收到错误消息:确切的错误信息:

SMTP -> ERROR: Failed to connect to server: 连接尝试失败,因为连接方在一段时间后没有正确响应,或者建立的连接失败,因为连接的主机没有响应。 (10060)

以下发件人地址失败:name@zenphoto.com:在未连接的情况下调用了 Mail() 邮件程序错误:以下发件人地址失败:name@zenphoto.com:在未连接的情况下调用了 Mail()

最佳答案

如果你使用 smtp,这是你需要遵循的格式

$mail->IsSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtpout.secureserver.net'; // Specify main and backup server
$mail->Port = '80';
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = ''; // SMTP username
$mail->Password = ''; // SMTP password
$mail->SMTPSecure = ''; // Enable encryption, 'ssl' also accepted


$mail->From = '';
$mail->FromName = '';
$mail->AddAddress('abc@gmail.com', ''); // Add a recipient
$mail->AddReplyTo('', 'reply');
//$mail->AddCC('');
$mail->AddBCC('');

$mail->WordWrap = 50;
$mail->IsHTML(true); // Set email format to HTML

$mail->Subject = '';
$mail->Body = "<!DOCTYPE html>
<html lang='en-us'>
<head>
<meta charset='utf-8'>
<title></title>

</head>
<body>
<html>";

关于PHPMailer() : Called Mail() without being connected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18443175/

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