ECSHOP新订单邮件通知多个客服

/languages/zh_cn/admin/shop_config.php中添加
 
$_LANG['cfg_desc']['service_email']
 
'多个邮箱地址请用半角逗号分隔。';
 
 
/flow.php中以下发送新订单提醒邮件代码
 
send_mail($_CFG['shop_name'], 
$_CFG['service_email'], 
$tpl['template_subject'], 
$content, 
$tpl['is_html']);
 
修改为
 
$arrEmail = explode("," ,$_CFG['service_email']);
 
foreach($arrEmail as $arrEmailValue)
 
{send_mail($_CFG['shop_name'], $arrEmailValue, $tpl['template_subject'], $content, $tpl['is_html']); //发给多个客服}