PHPMailer中的SMTP connect()失败错误

前端之家收集整理的这篇文章主要介绍了PHPMailer中的SMTP connect()失败错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是 PHP的新手,我想用 PHP发送邮件.我有一个联系我们表格,我会接受与我联系的人的电子邮件,因此邮件将发送给我.我正在使用 https://github.com/PHPMailer/PHPMailer/tree/master以上的PHPMailer库,以下是我正在使用的代码片段.
<?PHP
require("class.PHPmailer.PHP");
$mail = new PHPMailer();
$mail->IsSMTP();  

$mail->SMTPSecure = 'tls';

$mail->Host     = "resolver1.opendns.com"; // this SMTP server of my machine
//$mail->Host     = "208.67.222.222";//ip ; which one to use the resolver1.opendns.com or 208.67.222.222 ???

$mail->From     = "xyz@gamil.com;//email id of the person 

$mail->AddAddress("datta.dhonde@coreathena.com");//my email id

$mail->Subject  = "First PHPMailer Message";
$mail->Body     = "Hi! \n\n This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;

if(!$mail->Send()) 
{
  echo 'Message was not sent.';
  echo 'Mailer error: ' . $mail->ErrorInfo;
}  
else 
{
  echo 'Message has been sent.';
}
?>

我收到错误“消息未发送.Mailer错误:SMTP连接()失败.”
我没有得到什么问题..?
$mail-> Host =“”;请评论这是什么意思?

添加$mail-> SMTPDebug = 1;并尝试调试问题.
原文链接:https://www.f2er.com/php/133478.html

猜你在找的PHP相关文章