簡體   English   中英

SMTP錯誤,我不知道為什么

[英]SMTP Error, I don't know why

我真的希望有人能幫助我。 我不知道我的問題會是什么原因。 但是有一個錯誤的說法,

SMTP錯誤:無法連接到SMTP主機。 郵件錯誤-> SMTP錯誤:無法連接到SMTP主機。

在此先感謝您,感謝您的幫助。

<?php
    require_once('phpmailer/class.phpmailer.php');

    $mail = new PHPMailer();
    $mail->CharSet =  "utf-8";
    $mail->IsSMTP();
    $mail->SMTPAuth = true;
    $mail->Username = "kurokonobasket189@gmail.com";
    $mail->Password = "vanishingdrive";
    $mail->SMTPSecure = "ssl";  
    $mail->Host = "smtp.gmail.com";
    $mail->Port = "465";

    $mail->setFrom('kurokonobasket189@gmail.com', 'Francis');
    $mail->AddAddress('astigvargas189@yahoo.com', 'Arnold');

    $mail->Subject  =  'using PHPMailer';
    $mail->IsHTML(true);
    $mail->Body    = 'Hi there ,
                      <br />
                      this mail was sent using PHPMailer...
                      <br />
                      cheers... :)';

    if($mail->Send())
    {
        echo "Message was Successfully Send :)";
    }
    else
    {
        echo "Mail Error - >".$mail->ErrorInfo;
    }
?>

這里下載最新版本

並使用這個;

<?php
   require 'PHPMailerAutoload.php';

$mail = new PHPMailer;

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

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'test@gmail.com';                 // your domain username
$mail->Password = 'pass';                           // your address password
//$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 25;                                    // TCP port to connect to

$mail->setFrom('test@gmail.com', 'Mailer');  //your domain addres
$mail->addAddress('bilisim_0@outlook.com', 'Joe User');     // Add a recipient
//$mail->addAddress('ellen@example.com');               // Name is optional
$mail->addReplyTo('test@gmail.com', 'Information');
//$mail->addCC('cc@example.com');
//$mail->addBCC('bcc@example.com');

//$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';
}

確保您打開了安全設置; https://myaccount.google.com/lesssecureapps?pli=1

也不要打開這部分$mail->SMTPSecure = 'tls'; 當您打開設置時。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM