修改注册发送邮件(更新)

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

http://bbs.ecshop.com/thread-76708-1-1.html

最近看到一些朋友按照我的步骤修改 等注册成功后出现提示错误,我当时不是在2.61下修改所以没有发现,刚我在2.61下测试的确有这问题

第一种方法:

  1. if (register($username, $password, $email, $other) !== false)
  2. {
  3. $title = "欢迎您注册";//在这给地方直接定义标题
  4. $content = "你好"; //直接根据自己的需要定义内容
  5. send_mail($_CFG['shop_name'], $email,$title, $content, $tpl['is_html']);
  6. show_message(sprintf($_LANG['register_success'], $username . "$user->ucdata"), $_LANG['profile_lnk'], 'user.php', 'info', true);
  7. }
复制代码

第二种方法:
  1. if (register($username, $password, $email, $other) !== false)
  2. {



  3. $tpl = get_mail_template('send_reg');
  4. $smarty->assign('send_time', local_date($_CFG['time_format']));
  5. $smarty->assign('shop_name', $_CFG['shop_name']);
  6. $smarty->assign('send_date', local_date($_CFG['date_format']));
  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);
  10. }
复制代码
改为
  1. if (register($username, $password, $email, $other) !== false)
  2. {



  3. $tpl = get_mail_template('send_reg');
  4. $smarty->assign('send_time', local_date($_CFG['time_format']));
  5. $smarty->assign('shop_name', $_CFG['shop_name']);
  6. $smarty->assign('send_date', local_date($_CFG['date_format']));
  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 ), $_LANG['profile_lnk'], 'user.php', 'info', true);
  10. }
复制代码
既去掉 . "$user->ucdata"
有需求的朋友 先按照我的修改方法修改如果还有问题跟贴 或直接联系西安php服务中心 qiyongdongqq:138918647


回答:
不错,支持了。

谢谢,我就不去做整理了,如果你需要的话 整理一下 在贴一下 。

能否将最后完善的修改发布上来?对于我们这些不懂php语言的大菜鸟来说,是一件很感激的事情

貌似发送出去的邮件不能取得用户名了


在线等待中

更新..
更新

受教了。

很好 很强大

顶一下!~学习了!

顶上去哈。。。

技术贴,好

支持支持支持支持支持支持

这个要收藏