php mailer类调用远程SMTP服务器发送邮件实现方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-07-13 10:32:57 浏览: 评论:0
本文实例讲述了php mailer类调用远程SMTP服务器发送邮件实现方法,分享给大家供大家参考,具体如下:
php mailer 是一款很好用的php电子邮件发送类模块,可以调用本地的smtp发送电子邮件,也可以调用远程的smtp发送电子邮件,但是使用时需要注意一些事项,否则就会造成发送失败,或者根本不能调用的情况,本文就我在使用这个类时,遇到的问题和解决办法进行展开,简要说明一下php mailer的用法,及注意事项。
下载之后,将这个文件,即class.phpmailer.php 放到你的工程的某个目录下,在需要发送邮件的地方这样写:
- <?php
- require 'class.phpmailer.php';
- try {
- $mail = new PHPMailer(true);
- $body = file_get_contents('contents.html'); //邮件的内容写到contents.html页面里了
- $body = preg_replace('//////','', $body); //Strip backslashes
- $mail->IsSMTP(); // tell the class to use SMTP
- $mail->SMTPAuth = true; // enable SMTP authentication
- $mail->Port = 25; // set the SMTP server port
- $mail->Host = "mail.yourdomain.com"; // 远程SMTP服务器
- $mail->Username = "yourname@yourdomain.com"; // 远程SMTP 服务器上的用户名
- $mail->Password = "yourpassword"; // 你的远程SMTP 服务器上用户对应的密码
- //$mail->IsSendmail(); //告诉这个类使用Sendmail组件,使用的时候如果没有sendmail组建就要把这个注释掉,否则会有
- $mail->AddReplyTo("yourname@yourdomain.com","First Last");
- $mail->From = "fromname@yourdomain.com";
- $mail->FromName = "First Last";
- $to = "toname@domain.com";
- $mail->AddAddress($to);
- $mail->Subject = "First PHPMailer Message";
- $mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
- $mail->WordWrap = 80; // set word wrap
- $mail->MsgHTML($body);
- $mail->IsHTML(true); // send as HTML
- $mail->Send();
- echo 'Message has been sent.';
- } catch (phpmailerException $e) {
- echo $e->errorMessage();
- }
- ?>
注意:上面那个$mail->IsSendmail(); 需要注释掉,否则如果没有sendmail组件的话,会提示 “Could not execute: /var/qmail/bin/sendmail ”的错误!
Tags: mailer SMTP发送邮件
- 上一篇:PHP生成和获取XML格式数据的方法
- 下一篇:PHP Echo字符串的连接格式
相关文章
- ·利用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使用Gmail来发送邮件的连接smtp服务器错误(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)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)