Chinaunix首页 | 论坛 | 博客
  • 博客访问: 454678
  • 博文数量: 97
  • 博客积分: 1552
  • 博客等级: 上尉
  • 技术积分: 1091
  • 用 户 组: 普通用户
  • 注册时间: 2012-05-17 17:05
个人简介

专注于大规模运维场景运维工具解决方案。欢迎有这方面兴趣的朋友跟我联系。

文章分类

全部博文(97)

文章存档

2014年(12)

2013年(25)

2012年(60)

我的朋友

分类: PHP

2013-01-25 08:43:10

// 输出生成HTML可发送的邮件主体内容
function getMessage($result) {
	$message = "
		
		
			
                
            
		
		
			

报表

"; $tr = ""; foreach($result as $k => $v) { $tr .= ""; $tr .= ""; $tr .= ""; } $message .= $tr . "
产品 二级产品 xxx xx xxx xxx xxx
"; $tr .= $v["firstProduct"]; $tr .= $v["secondProduct"]; $tr .= $v["xxx"]; $tr .= $v["xxx"]; $tr .= $v["xx]; $tr .= $v["xxx"]; $tr .= $v["xxx"]; $tr .= "
"; return $message; } //程序主函数 function main() { global $xxx_link; $allUser = " select distinct x from a "; $data = getAll($allUser,$xxx_link); foreach($data as $k => $v) { $userId = $v["user_id"]; $currentUser = " SELECT xxx FROM xxxx "; $result = getAll($currentUser,$xxx_link); $currentUserTemplate = getMessage($result); $to = "xxxo@126.com"; $subject = "中文标题"; $subject = "=?UTF-8?B?".base64_encode($subject)."?="; $headers = "MIME-Version: 1.0" . "\\r\\n"; $headers .= "Content-type:text/html;charset=utf-8" . "\\r\\n"; // 更多报头 $headers .= 'From: ' . "\\r\\n"; //邮件来源 // $headers .= 'Cc: xxx@xxxx.com' . "\\r\\n"; mail($to,$subject,$message,$headers); } } // 这样就可以发送包含HTML格式的邮件体了。 利用的是sendmail发送。
阅读(4565) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~