PhpMailer:无效的地址错误

时间:2016-01-06 12:39:43

标签: php phpmailer

我的问题:当这个php代码执行时,我得到一个无效的地址错误。 我的目标:只需使用PhpMailer通过GMail发送电子邮件。 我目前在使用Mamp的本地服务器上运行此代码。

代码:



<?php
 
  require_once ( 'phpmailer/class.phpmailer.php' ); // Add the path as appropriate

  $MessageHTML = 'Hello';
  $MessageTEXT = 'Hello';

  $Mail = new PHPMailer();
  $Mail->IsSMTP(); // Use SMTP
  $Mail->Host        = "smtp.gmail.com"; // Sets SMTP server
  $Mail->SMTPDebug   = 2; // 2 to enable SMTP debug information
  $Mail->SMTPAuth    = TRUE; // enable SMTP authentication
  $Mail->SMTPSecure  = "tls"; //Secure conection
  $Mail->Port        = 587; // set the SMTP port
  $Mail->Username    = 'x.x@gmail.com'; // SMTP account username
  $Mail->Password    = 'xxxxxxx'; // SMTP account password
  $Mail->Priority    = 1; // Highest priority - Email priority (1 = High, 3 = Normal, 5 = low)
  $Mail->CharSet     = 'UTF-8';
  $Mail->Encoding    = '8bit';
  $Mail->Subject     = 'Test Email Using Gmail';
  $Mail->ContentType = 'text/html; charset=utf-8\r\n';
  $Mail->From        = 'x.x@gmail.com';
  $Mail->FromName    = 'GMail Test';
  $Mail->WordWrap    = 900; // RFC 2822 Compliant for Max 998 characters per line

  $Mail->AddAddress( "x.x@gmail.com" ); // To:
  $Mail->isHTML( TRUE );
  $Mail->Body    = $MessageHTML;
  $Mail->AltBody = $MessageTEXT;
  $Mail->Send();
  $Mail->SmtpClose();

  if ( $Mail->IsError() ) { 
    echo "ERROR<br /><br />";
  }
  else {
    echo "OK<br /><br />";
  }
?>
&#13;
&#13;
&#13;

0 个答案:

没有答案
相关问题