dongqiang8474 2016-09-12 07:31
浏览 135
已采纳

PHPMailer邮件错误 - > SMTP连接()

I don't know why I get this error PHPMailer Mail Error - >SMTP connect(). How can I solve it? I don't have any idea how can I do I need exactly explications, I'm new with PHP

<?php
    require '../plugins/phpmailer/PHPMailerAutoload.php';
    $mail = new PHPMailer();
    $mail->CharSet = "utf-8";
    $mail->IsSMTP();
    $mail->SMTPDebug = 1;
    $mail->SMTPAuth = true;
    $mail->Username = "myemail@gmail.com";
    $mail->Password = "mypass";
    $mail->SMTPSecure = "ssl";
    $mail->Host = "smtp.gmail.com";
    $mail->Port = "587";

    $mail->setFrom('your_gmail@gmail.com', 'your name');
    $mail->AddAddress('to_mail@mail.com', 'receivers name');

    $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;
    }
    ?>
  • 写回答

2条回答 默认 最新

  • dsdtszi0520538 2016-09-12 08:13
    关注

    Error due to SMTP connection failed.So, Check your configuration first, you can check by comment the line $mail->IsSMTP();

    // $mail->IsSMTP();
    

    See below is working demo :

      <?php
       require 'phpmailer.php';
       require 'smtp.php';
       $mail = new PHPMailer;
      //$mail->IsSMTP(); // telling the class to use SMTP
       $mail->Host       = "smtp.gmail.com"; // SMTP server
       $mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
                                           // 1 = errors and messages
                                           // 2 = messages only
       $mail->SMTPAuth   = true;                  // enable SMTP authentication
       $mail->Host       = "smtp.gmail.com"; // sets the SMTP server
       $mail->Port       = 465;                    // set the SMTP port for the GMAIL server
       $mail->Username   = GMAIL EMAIL ID; // SMTP account username
       $mail->Password   = GMAIL PASSWORD;        // SMTP account password
       $mail->SMTPSecure = 'ssl';
    
    
       $mail->From = 'from@example.com';
       $mail->FromName = 'Mailer';
       $mail->addAddress('MAIL ID to whom you eant to send');               // Name is optional
    
      $mail->addCC('CC EMAIL ID');
      $mail->addBCC('BCC EMAIL ID');
      $mail->WordWrap = 50;                                 // Set word wrap to    50 characters
    
      $mail->Subject = 'Here is the subject';
      $mail->Body    = 'MESSAGE';
      $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';
     }
        ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)