您现在的位置是:首页 > 教程 > 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文章列表页调用文章描述信息的方法
注意:这里所说的描述信息,指的是在ECSHOP后台发布文章时,填写的那个“网页描述”信息。 -
怎么删除meta name="Generator" content="ECSHOP v2.7.2"
大家可能都发现了,商城源代码里面有下面这样的代码。这个代码很不安全,很多网络罪犯就是利用版本信息来寻找漏洞入侵网站,并且对网站进行破坏的。 -
ecshop中的fck在上传图片时提示错误的解决方法
这个主要原因是fckeditor的安全机制组织你上传文件,因为上传文件会牵扯到大量的网站漏洞的问题。
留言与评论 (共有 条评论) |