我们利用 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>"; */
- ?>
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
波比源码 » 利用phpmailer 发送邮件代码[发送html内容]
波比源码 » 利用phpmailer 发送邮件代码[发送html内容]