+ -
当前位置:首页 → 问答吧 → 利用phpmailer 发送邮件代码[发送html内容]

利用phpmailer 发送邮件代码[发送html内容]

时间:2009-05-31

来源:互联网

<?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 = "[email protected]";
$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("[email protected]", "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>"; */
?>
本站原创http://www.111cn.cn 转载请注明

作者: mailangel123   发布时间: 2009-05-31

谢谢了 这个正需要

作者: maikongjian   发布时间: 2009-05-31

需要~不错!!

需要PHP或APC配置一些地方么?

作者: kazaff   发布时间: 2009-05-31

邮件代码

作者: kathy87   发布时间: 2009-05-31

楼主的网站做的很不错哦

作者: 我是疯子   发布时间: 2009-06-01

kathy87

到这里去下载phpmailer
http://down.111cn.cn/down/soft/other/2009/0603/phpmailer.html

对了还有一个function.php 文件里面我们只用到了get_Value()这个取得post过来的值了,这个大家可以自己写。

作者: mailangel123   发布时间: 2009-06-03

看看。。。。。。。。。。。。。。。。。

作者: Cr@zyTreE   发布时间: 2009-07-29

热门下载

更多