您现在的位置是:首页 > 教程 > 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首页显示商品库存的方法”, 下面是修改方法1、打开 /includes/lib_goods.php 文件(建议使用editplus) -
ecshop验证码背景图修改方法
ECSHOP验证码背景图修改教程:ECSHOP前后台的某些地方都大有验证码功能,也许有人会觉得自己的ECSHOP商城验证码背景样式跟别人的都千篇一律 -
ecshop语言包lang的加载原理使用方法
ECshop语言包lang的加载原理使用方法例如:我要在库文件里面加载一段语言,调用到语言包:模板里面: -
ecshop首页主广告管理使用说明
ECSHOP首页主广告管理,ECSHOP首页广告位。在网店后台 -> 系统设置 -> 首页主广告管理,可以设置首页主广告位。
留言与评论 (共有 条评论) |