您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop订单后给客户商家发邮件
邬肖任2023-12-26 00:35:21ecshop商城教程已有人查阅
导读在flow.php文件中,给商家发邮件下面增加下面的代码就可以实现。注意 email就是客户的email地址,通过$consignee[]数组获取
在flow.php文件中,给商家发邮件下面
/* 给商家发邮件 */
/* 增加是否给客服发送邮件选项 */
if ($_CFG['send_service_email'] && $_CFG['service_email'] != '')
{
$tpl = get_mail_template('remind_of_new_order');
$smarty->assign('order', $order);
$smarty->assign('goods_list', $cart_goods);
$smarty->assign('shop_name', $_CFG['shop_name']);
$smarty->assign('send_date', date($_CFG['time_format']));
$content = $smarty->fetch('str:' . $tpl['template_content']);
send_mail($_CFG['shop_name'], $_CFG['service_email'], $tpl['template_subject'], $content, $tpl['is_html']);
}
增加下面的代码就可以实现。注意 email就是客户的email地址,通过$consignee[]数组获取
/* 增加是否给客户发送邮件选项 add by crab 2010.04.09 */
if ($consignee['email'] != '')
{
$tpl = get_mail_template('order_confirm');
$smarty->assign('order', $order);
$smarty->assign('goods_list', $cart_goods);
$smarty->assign('shop_name', $_CFG['shop_name']);
$smarty->assign('send_date', date($_CFG['time_format']));
$content = $smarty->fetch('str:' . $tpl['template_content']);
send_mail($_CFG['shop_name'], $consignee['email'], $tpl['template_subject'], $content, $tpl['is_html']);
}
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop会员用户登录超时自动退出怎么办
ecshop存登录和购物车信息的时候用的是session,所以用cookie能够解决这个问题。1.购物车问题原因的产生是因为动态IP的SESSEION机制 -
ecshop安装百度编辑UEditor的方法
ECSHOP系统自带的编辑器大家用过都知道,难用不说,还不能批量上传图片。很多朋友都喜欢百度编辑器,因为百度编辑器功能强大,使用方便,而且不会生成太多多余 -
ecshop商品属价格0元不显示的实现方法
默认的情况是,当商品属 价格为0时,后面会显示 [ ¥0.00元] ,就像下面这样。总觉的那个0.00元有点多余,用户体验不是很好。 -
ecshop快速购买添加到购物车和立刻购买并存的方法
在后台开启“一步购物则”可以不用到购物车“直接结算” 。从而实现立刻购买。然而购物车的功能又没有了。有没有像淘宝那样即可以立刻购买。又有购物车功能呢?
留言与评论 (共有 条评论) |