discuz回贴通知插件实现-获取邮件内容

//自定义钩子函数,命名:模块_函数名_output()或模块_函数名()
//一个是模块执行完,模板输出前执行。一个是模块执行前
//post_reply_output函数会在所有post操作中都会执行,通过$params['message']来区别
public function post_reply_output($params) {
    global $_G;

    //判断是否为主题回复成功时
    if($params['message'] != 'post_reply_succeed') {
        return;
    }

    //如果操作的是系统表,先获得系统表的模型,
    //在discuz目录的source/class/table下
    $mForumThread = C::t('forum_thread');
    $tid = $params['values']['tid'];
    $thread = $mForumThread->fetch($tid);
    //主题作者ID
    $authorId = $thread['authorid'];
    //判断作者是否开启回贴通知
    $mForumPostNotice = C::t('#post_notice#forum_post_notice');
    $isNotice = $mForumPostNotice->getNoticeState($authorId);
    if($isNotice) {
        $mCommonMember = C::t('common_member');
        $author = $mCommonMember->fetch($authorId);
        $email = $author['email'];
        $subject = '您的贴子有回复了!';
        $body = $author['username'] . "\n";
        $body .= "您的主题:" . $thread['subject'] . "有回复了!\n";
        $body .= "复制链接查看:" . $_G['siteurl'] . "forum.php?mod=viewthread&tid=" . $tid . "\n";
        
        //判断后台是否开启了添加回贴内容
        if($_G['cache']['plugin']['post_notice']['add_postcont']) {
            //回复内容
            $mForumPost = C::t('forum_post');
            $pid = $params['values']['pid'];
            $post = $mForumPost->fetch($thread['posttableid'],$pid);
            $body .= "回复内容:\n" . $post['message'];
        }
        
        //发送邮箱
        
    } else {
        return;
    }
}

 

相关文章

**本资源可免费获取,请至尾部读阅!**Discuz素材资源交易论...
分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风...
最近工作需要IIS,自己的电脑又是Windows7系统,找了下安装的...
首先就是discuz,用起来真的是特别的好用,搭建的网站真的非...
1.找到图片路径拼装文件首先打开根目录下的template目录找到...
打开NavicatforMySQL找到数据表 pre_ucenter_members 把密...