我们在使用PHPMailer使用Gmail来发送邮件的连接smtp服务器错误提示:smtp error could not connect to smtp host !了,这个是因为extension=php_openssl.dll未开启导致的哦。
使用的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!";
- }
按照这个例子给出的代码操作,我遇到了以下错误:
提示您 smtp error could not connect to smtp host !的错误提示,google了下,发现是需要开启PHP的openssl扩展:
extension=php_openssl.dll //去掉最前面的分号,重启apache或nginx服务器。
HoHo~成功发送。
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
波比源码 » PHPMailer使用Gmail来发送邮件的连接smtp服务器错误
波比源码 » PHPMailer使用Gmail来发送邮件的连接smtp服务器错误