php专区

 首页 > php专区 > PHP应用 > CMS建站 > ecshop用户注册后发送邮件给客户功能 - ecshop

ecshop用户注册后发送邮件给客户功能 - ecshop

分享到:
【字体:
导读:
          第一步:当然是从数据库入手,用mysql管理工具找到 ecs_mail_templates 表插入一条 注册发送邮件的数据 INSERTINTO`ecs_mail_templates`(`template_id`,`template_code`,`is_html`,`template_subj...

ecshop用户注册后发送邮件给客户功能

第一步:当然是从数据库入手,用mysql管理工具找到 ecs_mail_templates 表插入一条 注册发送邮件的数据.

  1. INSERT INTO `ecs_mail_templates` (`template_id`, `template_code`, `is_html`, `template_subject`, `template_content`, `last_modify`, `last_send`, `type`) VALUES(”, ’send_reg’, 0, ‘注册确认’, ‘{$user_name}您好! 
  2. nrn   恭喜你注册为www.phpfensi.com会员rnrn{$shop_name}rn{$send_date}’, 1228373714, 0, ‘template’); 

template_content 是邮件发邮件内容字段 根据自己的需要编辑不同的内容 当然等你添加成功后 去后台邮件模板管理可以去做管理编辑。

第二步:在语言文件加入一行记录 找languages/zh_cn/admin/mail_template.php 打开 添加 $_LANG['send_reg'] = ‘注册确认模板’;

第三步:修改注册文件 打开 user.php 找到如下代码:

  1. if (register($username$password$email$other) !== false) 
  2. show_message(sprintf($_LANG['register_success'], $username . “$user->ucdata”), $_LANG['profile_lnk'], ‘user.php’, ‘info’, true); 

在160行左右修改为:

  1. if (register($username$password$email$other) !== false) 
  2.     { 
  3.      $tpl = get_mail_template(’send_reg’); 
  4.      $smarty->assign(’shop_name’, $_CFG['shop_name']); 
  5.      $smarty->assign(’send_date’, date($_CFG['time_format'])); 
  6.     $smarty->assign(‘user_name’,$username); 
  7.      $content = $smarty->fetch(’str:’ . $tpl['template_content']); 
  8.      send_mail($_CFG['shop_name'], $email$tpl['template_subject'], $content$tpl['is_html']); 
  9.      show_message(sprintf($_LANG['register_success'], $username . “$user->ucdata”), $_LANG['profile_lnk'], ‘user.php’, ‘info’, true); 
分享到:
ecshop后台如何去掉更新提醒,install、de...
ecshop后台如何去掉更新提醒,install、demo删除提醒 首先找到如下文件admin\index.php 一:删除更新提醒:(大概483行左右)注释掉或者删掉下面的代码: elseif ($_REQUEST['act'] == 'main_api')  {      require_once(ROOT_PATH . '/includes/li...
如何用iphone、安卓等智能手机打开ecshop...
如何用iphone、安卓等智能手机打开ecshop正常显示,屏蔽wap功能 用手机打开ECSHOP网店,就会被重定向到mobile文件夹,如果打开wap功能,就能看到wap版的网站,但现在智能手机横行,iphone、安卓可以跟电脑一样浏览和购物,这个wap功能就有点鸡肋,现在把它屏蔽掉. 编辑index.php,注释或者删除掉以下...
  •         php迷,一个php技术的分享社区,专属您自己的技术摘抄本、收藏夹。
  • 在这里……