如何纠正SMTP连接失败错误?

时间:2014-11-16 00:47:03

标签: php smtp

<?php
require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

//$mail->SMTPDebug = 3;                               // Enable verbose debug output

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.comcast.net';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'mass.mari06@gmail.com';                 // SMTP username
$mail->Password = '8489328117';                           // SMTP password
$mail->SMTPSecure = 'ssl';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465;                                    // TCP port to connect to
$mail->Port = $SmtpPort;

$mail->From = 'from@example.com';
$mail->FromName = 'Mailer';
$mail->addAddress('mass.mari06@gmail.com', 'Joe User');     // Add a recipient
$mail->addAddress('deeparavisankar93@gmail.com');               // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');

$mail->WordWrap = 50;                                 // Set word wrap to 50 characters
$mail->addAttachment('/var/tmp/file.tar.gz');         // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg');    // Optional name
$mail->isHTML(true);                                  // Set email format to HTML

$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';



if(!$mail->send()) {
    echo 'Message could not be sent.';
    echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
    echo 'Message has been sent';
}


?>

****错误:****无法发送消息.Mailer错误:SMTP连接()失败。

那我该怎么办?请帮帮我..这段代码我是从GitHub下载的。

1 个答案:

答案 0 :(得分:0)

SMTP是邮件发送服务器。 您应该使用您尝试发送邮件的人从“分配”。我假设您尝试从mass.mari06@gmail.com发送,因此配置应如下所示:

$mail->Host = 'smtp.gmail.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'mass.mari06@gmail.com';