ECSHOP会员注册自动发送邮件欢迎信息
2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家
第一步: 数据库->ecs_mail_templates邮件模板表中插入一条注册发送邮件的记录。INSERT INTO ecs_mail_templates (template_id, template_code, is_html, template_subject, template_content, last_modify, last_send, type) VALUES ('', 'send_reg', '1', 'ECSHOP模板屋-欢迎信息', '尊敬的{$user_name},感谢您注册成为{$shop_name}的会员!
请您在发表言论时,遵守当地法律法规。
如果您有什么疑问可以联系管理员,Email: 2479454955@qq.com。
{$shop_name}
{$send_date}', '1387836051', '0', 'template');第二步:在语言文件 languages/zh_cn/admin/mail_template.php /* 模板描述 */下添加$_LANG['send_reg'] = '欢迎信息模板';第三步:增加PHP处理逻辑flow.php和user.php中均有会员注册逻辑,所以这两个文件都要增加邮件发送代码flow.php 大概286行->elseif (!empty($_POST['act']) && $_POST['act'] == 'signup') 里面增加如下代码:/* 注册会员邮件欢迎 */$tpl = get_mail_template('send_reg');$smarty->assign('shop_name', $_CFG['shop_name']);$smarty->assign('send_date', date($_CFG['time_format']));$smarty->assign('user_name',$username);$content = $smarty->fetch('str:' . $tpl['template_content']);send_mail($_CFG['shop_name'], $email, $tpl['template_subject'], $content, $tpl['is_html']);user.php 大概234行->/* 写入密码提示问题和答案 */这个判断的下面增加如下代码:/* 注册会员邮件欢迎 */$tpl = get_mail_template('send_reg');$smarty->assign('shop_name', $_CFG['shop_name']);$smarty->assign('send_date', date($_CFG['time_format']));$smarty->assign('user_name',$username);$content = $smarty->fetch('str:' . $tpl['template_content']);send_mail($_CFG['shop_name'], $email, $tpl['template_subject'], $content, $tpl['is_html']);
最近更新
常用插件
- ecshop二次开发商品购买备
ecshop销售统计 插件介绍:ecshop二次开发订单销售统计和商品购买备注服...
- ecshop二次商品订购人信息
ecshop二次商品订购人信息填写插件,有时候给朋友送花,或者是送礼品的...
- ecshop会员中心订单excel倒出
ecshop会员中心订单excel倒出...
- ecshop2.7.2退换货申请插件
ecshop2.7.2退换货申请插件,主要是在 ecshop 现在的基础上,对ecshop的订单处...
- ecshop注册推荐送现金插件
ecshop中的促销售功能还不是很完善,随着电子商务系统的发展和进步,...