帝国的教程 对7.5 不适用
修改eenewsindex.php,在大约215行
代码如下:
AddGbook($_POST);
在这一行前面加上:
代码如下:
@include("../class/SendEmail.inc.php");
SendNoticeToAdmin("收到新留言",$_POST);
5.有会员在网站上注册(如果是注册需要审核,收到这封邮件管理员可以及时去后台审核)
修改eenewsindex.php,在大约74行.
代码如下:
register($username,$password,$repassword,$email);
在这一行前面加上:
代码如下:
@include('../class/SendEmail.inc.php');
SendNoticeToAdmin("新会员注册,用户名:".$username,$_POST); |