分类分类
更新时间:2026-05-10 20:59:50作者:zhao
修改前,请先解决ecshop邮件模板的一个bug:http://www.a5xiazai.com/info/2015/0410/119846.html

一、执行SQL,注意默认表前缀“ecs_”。
INSERT INTO `ecs_mail_templates` (`template_code`, `is_html`, `template_subject`, `template_content`, `last_modify`, `last_send`, `type`) VALUES
('modify_admin_password', 1, '管理员密码修改通知', '<p>{$user_name}:<br />n<br />n您的密码已修改,请妥善保管!忘记密码,请<a target="_blank" href="{$reset_pwd_url}">点击重置</a>。 <br />n<br />n{$shop_name}<br />n{$send_time}</p>', 0, 0, 'template');
二、编辑/admin/privilege.php
//更新管理员信息
if($pwd_modified)
{
$sql = "UPDATE " .$ecs->table('admin_user'). " SET ".
"user_name = '$admin_name', ".
"email = '$admin_email', ".
"ec_salt = '$ec_salt' ".
$action_list.
$role_id.
$password.
$nav_list.
"WHERE user_id = '$admin_id'";
$db->query($sql);
//发送邮件
$template = get_mail_template('modify_admin_password');
$reset_pwd_url = $ecs->url() . ADMIN_PATH . '/get_password.php?act=forget_pwd';
$smarty->assign('user_name', $admin_name);
$smarty->assign('reset_pwd_url', $reset_pwd_url);
$smarty->assign('shop_name', $_CFG['shop_name']);
$smarty->assign('send_time', local_date($_CFG['time_format']));
$content = $smarty->fetch('str:' . $template['template_content']);
send_mail($admin_name, $admin_email, $template['template_subject'], $content, $template['is_html']);
}
else
{
$sql = "UPDATE " .$ecs->table('admin_user'). " SET ".
"user_name = '$admin_name', ".
"email = '$admin_email' ".
$action_list.
$role_id.
$nav_list.
"WHERE user_id = '$admin_id'";
$db->query($sql);
}
/* 记录管理员操作 */
admin_log($_POST['user_name'], 'edit', 'privilege');
三、编辑/languages/zh_cn/admin/mail_template.php,添加语言项
$_LANG['modify_admin_password'] = '管理员密码修改通知模板';
相关
修真情缘角色扮演303.33 MBv1.0.02026-05-10
下载我的小独角兽女孩休闲益智380.89 MBv1.0.232026-05-10
下载超级种田男孩手机版经营养成1.31Gv1.0.92026-05-10
下载不必要的实验冒险游戏64.9 MBv1.1.592026-05-10
下载军师联盟策略游戏163.2 MBv0.0.12026-05-10
下载翻天喜地凑大钱手机版休闲益智138.72 MBv1.0.92026-05-10
下载东离剑游纪手游动作射击1.6Gv1.4.22026-05-10
下载天猫养车商家版App学习办公74.95 MBv0.6.12026-05-10
下载掌上命运方舟App手游辅助137.48 MBv1.9.12026-05-10
下载退役军人服务APP生活服务67.16 MBv1.2.52026-05-10
下载屯漫漫画APP资讯阅读23.06 MBv2.0.32026-05-10
下载蛋仔派对蛋壳App手游辅助185.73 MBv0.0.22026-05-10
下载









