花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

ecshop訂單后給客戶商家發(fā)郵件

時間: 2024-02-25 10:42 閱讀: 作者:素材無憂網(wǎng)

在flow.php文件中,給商家發(fā)郵件下面
/* 給商家發(fā)郵件 */
/* 增加是否給客服發(fā)送郵件選項 */
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']);
}
增加下面的代碼就可以實現(xiàn)。注意 email就是客戶的email地址,通過$consignee[]數(shù)組獲取
/* 增加是否給客戶發(fā)送郵件選項 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']);
}

版權聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權益請與我們聯(lián)系,我們將在24小時內刪除!謝謝!

轉載請注明: ecshop訂單后給客戶商家發(fā)郵件

標簽: ecshop訂單  
相關文章
推薦文章
模板推薦