PHPMailer使用Gmail来发送邮件的连接smtp服务器错误
发布:smiling 来源: PHP粉丝网 添加日期:2014-02-05 21:22:39 浏览: 评论:0
我们在使用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~成功发送。
Tags: PHPMailer Gmail 服务器错误
- 上一篇:php中使用smtp类轻松的发送电子邮件示例
- 下一篇:PHP中大括号{}用法总结
相关文章
- ·利用phpmailer 发送邮件代码[发送html内容](2014-01-20)
- ·PHPMailer 发送邮件实例程序(2014-01-25)
- ·PHPMailer发送邮件中文附件名是乱码(2014-01-25)
- ·使用PHPMailer发送邮件实例代码总结(2014-01-25)
- ·PHPMailer发送邮件报错Msg:stream_socket_enable_crypto():(2014-02-05)
- ·phpmailer发送邮件 SMTP Error: Could not authenticate 错误(2014-02-05)
- ·php中利用PHPMailer插件实现gmail发送邮件(2014-02-05)
- ·PHPMailer在SAE上无法发送邮件的解决方法(2014-09-20)
- ·利用PHPMailer来完成PHP的邮件发送(2015-12-10)
- ·汇总PHPmailer群发Gmail的常见问题(2019-12-04)
- ·PHPMailer的主要功能特点和简单使用说明(2020-09-15)
- ·PHPMailer发送HTML内容、带附件的邮件实例(2021-03-07)
- ·phpmailer在服务器上不能正常发送邮件的解决办法(2021-03-14)
- ·phpmailer发送邮件之后,返回收件人是否阅读了邮件的方法(2021-03-22)
- ·使用PHPMailer实现邮件发送代码分享(2021-04-17)
- ·PHP借助phpmailer发送邮件(2021-05-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)