Ошибка smtp при настройке phpmailer - PullRequest
0 голосов
/ 02 июня 2011

У меня проблемы с настройкой phpmailer на моем локальном веб-сервере, и я буду признателен за любую помощь

Я использую xamppp 1.7.4 и php 5.3.5 - я получаю следующее сообщение об ошибке всякий раз, когда пытаюсьотправить письмо

SMTP Error: Could not connect to SMTP host.

вот код, который я сейчас использую

require("resources/phpmailer/class.phpmailer.php");
    //send the email with an email containing the activation link to the supplied email address

   $mailer = new PHPMailer();
   $mailer->IsSMTP();  // telling the class to use SMTP
   $mailer->Mailer = "smtp";
   $mailer->Host = "ssl://smtp.gmail.com";
   $mailer->Port = 587;
   $mailer->SMTPAuth = true; // turn on SMTP authentication
   $mailer->Username = $email_kite;
   $mailer->Password = $emailpass_kite;
   $mailer->From = $email_kite;
   $mailer->FromName = 'Kite';
   $mailer->Body = 'Testing';
   $mailer->Subject = 'Get started with Kite';
   $mailer->AddAddress($email);
   if(!$mailer->Send())
   {
       // message not sent
  echo '<p class="c7">Unfortunately the <b>activation</b> email could not be sent and user registration has failed. Please go <a href="register.php">back</a> and try again.</p>';
      echo '<br><img src="resources/img/spacer.gif" alt="" width="1" height="10">';
  include_once ("resources/php/footer.php");
  exit;
   }
   else
   {
       // message sent
       "Email sent successfully!";
   }
    }

спасибо!

1 Ответ

1 голос
/ 02 июня 2011

Попробуйте использовать

$mailer->Port = 465;

Порт 587 предназначен для TLS, порт SSL - 465.

...