目前这个还不是最完善的~不过今天在发展区看见有人要,就做了个。
但是还不够完善,高手可以在现有基础上进行延伸。
打开include/newthread.inc.php
找到:
- $allowuseblog && $isblog && $blog ? showmessage('post_newthread_mod_blog_succeed', "blog.php?uid=$discuz_uid") :
- showmessage('post_newthread_mod_succeed', "forumdisplay.php?fid=$fid");
复制代码
在上面加:
- $subject = "您好, $discuz_user 发表的主题等待您的审核";
- $message = "您好, $discuz_user 发表的主题等待您的审核,请及时进行相关审核。";
- $db->query("INSERT INTO {$tablepre}pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '1', 'inbox', '1', '$subject', '$timestamp', '$message')");
复制代码
需要说明,如果想一次发给很多人,请在下面继续加
- $db->query("INSERT INTO {$tablepre}pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '1', 'inbox', '1', '$subject', '$timestamp', '$message')");
复制代码
其中替换第二行的第一个1,就是接受人的UID
打开include/newreply.inc.php
找到:
- !$allowuseblog || empty($isblog) ? showmessage('post_reply_mod_succeed', "forumdisplay.php?fid=$fid") :
- showmessage('post_reply_mod_blog_succeed', "blog.php?tid=$tid&starttime=$starttime&endtime=$endtime&page=$page");
复制代码
在上面加:
- $subject = "您好, $discuz_user 发表的帖子等待您的审核";
- $message = "您好, $discuz_user 发表的帖子等待您的审核,请及时进行相关审核。";
- $db->query("INSERT INTO {$tablepre}pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '1', 'inbox', '1', '$subject', '$timestamp', '$message')");
复制代码
需要说明,如果想一次发给很多人,请在下面继续加
- $db->query("INSERT INTO {$tablepre}pms (msgfrom, msgfromid, msgtoid, folder, new, subject, dateline, message)
- VALUES('$discuz_user', '$discuz_uid', '1', 'inbox', '1', '$subject', '$timestamp', '$message')");
复制代码
其中替换第二行的第一个1,就是接受人的UID |