discuz回贴通知插件实现-获取邮件内容
发布时间:2020-12-14 01:44:22 所属栏目:Discuz 来源:网络整理
导读://自定义钩子函数,命名:模块_函数名_output()或模块_函数名()//一个是模块执行完,模板输出前执行。一个是模块执行前//post_reply_output函数会在所有post操作中都会执行,通过$params['message']来区别public function post_reply_output($params) { glob
//自定义钩子函数,命名:模块_函数名_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;
}
}
? (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |