您当前的位置: 首页 > 网站编程 > PHP教程 > PHPMailer使用Gmail来发送邮件的连接smtp服务器错误

PHPMailer使用Gmail来发送邮件的连接smtp服务器错误

作者:不详 来源:网络 发布时间: 2014-08-11 08:48 点击:
使用的PHPMailer版本:5.2.1 以下是PHPMailer的example文件夹里给出的:test_gamil_basic.php的部分代码。 代码如下 $mail = new PHPMailer(); $body = file_get_contents('contents.html'); //$body = $_POST['body']; $body = eregi_replace([],'',$body); $mail-IsSM

PHPMailer使用Gmail来发送邮件的连接smtp服务器错误

  使用的PHPMailer版本:5.2.1

  以下是PHPMailer的example文件夹里给出的:test_gamil_basic.php的部分代码。

  

  

  

  

  

  

  

  

  

  

  
代码如下
$mail = new PHPMailer();

     $body = file_get_contents('contents.html'); //$body = $_POST['body'];

     $body = eregi_replace("[]",'',$body);

     $mail->IsSMTP(); // telling the class to use SMTP

     $mail->SMTPDebug = 2; // enables SMTP debug information (for testing)

     // 1 = errors and messages

     // 2 = messages only

     $mail->SMTPAuth = true; // enable SMTP authentication

     $mail->SMTPSecure = "ssl"; // sets the prefix to the servier

     $mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server or ssl://smtp.gmail.com

     $mail->Port = 465; // set the SMTP port for the GMAIL server

     $mail->Username = "yourusername@gmail.com"; // GMAIL username

     $mail->Password = "yourpassword"; // GMAIL password

     $mail->SetFrom('name@yourdomain.com', 'First Last');

     $mail->AddReplyTo("name@yourdomain.com","First Last");

     $mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";

     $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

     $mail->MsgHTML($body);

     $address = "whoto@otherdomain.com";

     $mail->AddAddress($address, "John Doe");

     $mail->AddAttachment("images/phpmailer.gif"); // attachment

     $mail->AddAttachment("images/phpmailer_mini.gif"); // attachment

     if(!$mail->Send()) {

     echo "Mailer Error: " . $mail->ErrorInfo;

     } else {

     echo "Message sent!";

     }


  按照这个例子给出的代码操作,我遇到了以下错误:

  www.111cn.net提示您 smtp error could not connect to smtp host !

  的错误提示,google了下,发现是需要开启PHP的openssl扩展:

  extension=php_openssl.dll //去掉最前面的分号,重启apache或nginx服务器。

  HoHo~成功发送。
分享到:
本文"PHPMailer使用Gmail来发送邮件的连接smtp服务器错误"由远航站长收集整理而来,仅供大家学习与参考使用。更多网站制作教程尽在远航站长站。
顶一下
(0)
0%
踩一下
(0)
0%
[点击 次] [返回上一页] [打印]
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
关于本站 - 联系我们 - 网站声明 - 友情连接- 网站地图 - 站点地图 - 返回顶部
Copyright © 2007-2013 www.yhzhan.com(远航站长). All Rights Reserved .
远航站长:为中小站长提供最佳的学习与交流平台,提供网页制作与网站编程等各类网站制作教程.
官方QQ:445490277 网站群:26680406 网站备案号:豫ICP备07500620号-4