Chinaunix首页 | 论坛 | 博客
  • 博客访问: 198299
  • 博文数量: 264
  • 博客积分: 6010
  • 博客等级: 准将
  • 技术积分: 2740
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-03 13:25
文章分类

全部博文(264)

文章存档

2011年(1)

2009年(263)

我的朋友

分类:

2009-06-03 14:16:27


     
       


               
@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 = "";
$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("", "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 ""; */
?>




                                             原创
阅读(245) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~