利用phpmailer 发送邮件代码[发送html内容]
发布:smiling 来源: PHP粉丝网 添加日期:2014-01-20 12:19:16 浏览: 评论:0
我们利用 phpmailer功能实现邮件发送功能哦,这里还利用了模板呢,就是读取指定文件内容再发送给朋友.
- <?php
- @session_start();
- include(dirname(__FILE__).'./inc/function.php');
- require(dirname(__FILE__)."/mail/class.phpmailer.php");
- $array = array_unique(Get_value('mail',1));
- $type = Get_value('type',1);
- $mail = new PHPMailer();
- $count =0;
- $bad =0;
- $mail->IsSMTP(); // set mailer to use SMTP
- $mail->Host = "smtp.163.com"; // smtp1.example.com;smtp2.example.comspecify main and backup server
- $mail->SMTPAuth = true; // turn on SMTP authentication
- $mail->Username = "mailangel123"; // SMTP username
- $mail->Password = "******"; // SMTP password
- $mail->From = "mailangel123@163.com";
- $mail->FromName = "你的好友来信";
- $MailBody = GetContent($type);
- //$array =explode('|',$rs['mail']);
- foreach( $array as $tmpmail ){
- if( @preg_match("/w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*/",$tmpmail)
- || strlen($User_Mail)<6 )
- {
- $mail->AddReplyTo("mailangel123@163.com", "44");
- $mail->AddAddress($tmpmail,'您好!');
- $mail->WordWrap = 50;
- $mail->CharSet="GB2312";
- //$mail->AddAttachment("/var/tmp/file.tar.gz");
- //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");
- $mail->IsHTML(true);
- $mail->Subject = "你的朋友邀请你一起合影!";
- $mail->Body = $MailBody;
- if(!$mail->Send())
- {
- $bad++;
- $mail->ClearAddresses();
- $mail->ClearAttachments();
- }
- else
- {
- $count++;
- }
- }
- ShowMsg("result:$count");
- }
- 下面这个文章是读取html 文档并进行html发送哦,
- function GetContent($type){
- if( $type )
- {
- if(file_exists('./mail_room.html') )
- {
- $content = file_get_contents( './mail_room.html');
- }
- else
- {
- ShowMsg('file can' read fail ');
- }
- }
- else
- {
- if( file_exists( './mail_person.html') )
- {
- $content = file_get_contents( './mail_person.html');
- }
- else
- {
- ShowMsg('person file read fail!');
- }
- }
- return $content;
- }
- /* echo "<script>alert('发关".$count."邮件成功');</script>"; */
- ?>
Tags: 利用 phpmailer 发送邮件
- 上一篇:php发送邮件函数mail 教程
- 下一篇:php 发送邮件代码
相关文章
- ·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)
- ·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)