ecmall倒出会员邮件地址
2013-09-12 00:10 来源:www.chinab4c.com 作者:ecamll专家
ecmall倒出会员邮件地址,这个插件非常重要,我们在运营了一段时间的项目之后,需要把下单会员的邮件信息统计出来,进行具体的营销和分析,这个是有必要的,我们就可以通过开发ecmall邮件倒出功能,来实现ecmall二次开发这个插件效果。以下是程序。
$model_order =& m('order');
$email_list = $model_order->db->getAll("select buyer_email from ".DB_PREFIX."order group by buyer_email");
$fn = "data/".date("Y-m-d").".xls";
$file = fopen($fn,"w");
foreach ($email_list as $k => $v) {
fputcsv($file,$v);
}
fclose($file);
header ( "Pragma: public" );
header ( "Expires: 0" );
header ( "Cache-Control: must-revalidate, post-check=0, pre-check=0" );
header ( "Content-Type: application/force-download" );
header ( "Content-Type: application/octet-stream" );
header ( "Content-Type: application/download" );
header ( "Content-Disposition: attachment;filename=$filename " );
header ( "Content-Transfer-Encoding: binary " );
header("Location:".$fn);
以上就是ecmall倒出会员邮件地址开发。
来源:http://www.chinab4c.com
最近更新
常用插件
- ecshop商品分类名称增加样
ecshop插件介绍:本插件可以方便在后台管理,为ecshop商品分类名称增加样...
- ecshop根据订单批量发红包
ecshop根据订单批量发红包 ,大家肯定对ecshop红包不陌生,但是对ecshop订...
- ecshop中nginx实现url的重写
上几章为了让ecshop很好的在nginx上运行。我们搭配了ecshop的nginx下的工作...
- ecshop 手机注册验证插件
ecshop 手机注册验证插件 ,需要通过手机获短信,然后注册验证 价格:...
- ecshop使用手机验证码登陆
ecshop使用手机验证码登陆,这个功能很新颖,有些特殊的ecshop站点,他到...