利用phpmailer 发送邮件代码[发送html内容]
时间:2009-05-31
来源:互联网
@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
到这里去下载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
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28