技术帮助 发表于 2016-12-7 11:58:34

Discuz sendmail函数实现 发表回帖邮件通知楼主方法

打开目录:source\include\post
找到文件:post_newreply.php

找到下面代码:
if(!isset($inspacecpshare)) {

                showmessage($return , $url, $modpost->param('showmsgparam'));

      }在这段代码之前添加如下代码:


if($firstpost['author'] != $_G['uid']){
    $tomail = reset(C::t('common_member')->fetch_all_by_username($firstpost['author']));
    $mail_subject = '您的帖子有新回复!';
    $mail_message = <<<EOT
<table cellpadding="6" cellspacing="0" width="100%" style="width:650px;margin:0 auto;font-size:12px;">
                <tbody><tr>
                        <td width="640" style="border-bottom:1px solid #e0e0e0;text-align:right;" colspan="2">
                                <table cellpadding="0" cellspacing="0">
                                        <tbody><tr>
                                                <td valign="bottom"><img src="http://www.dz7.com.cn/template/dz7_tuhao1/images/logo.png" style="vertical-align: bottom"></td>
                                                <td width="600" style="text-align:right" valign="bottom"><a href="http://www.dz7.com.cn/member.php?mod=logging&amp;action=login" style="font-size:14px;color:#0082d5;text-decoration:none;" target="_blank">登录</a> | <a href="http://www.dz7.com.cn/member.php?mod=register" style="font-size:14px;color:#0082d5;text-decoration:none" target="_blank">注册</a></td>
                                        </tr>
                                </tbody></table>
                        </td>
                </tr>
                <tr>
                        <td style="font-size:14px;line-height:25px;">尊敬的DZ起点网会员:<span style="border-bottom: 1px dashed rgb(204, 204, 204); z-index: 1; position: static;" t="7" data="{$firstpost['author']}" isout="1">{$firstpost['author']}</span><br><br>有新网友回复了您在起点网发布的帖子《<a href="http://www.dz7.com.cn/discuz-{$firstpost['tid']}-1-1.html" target="_blank">{$firstpost['subject']}</a>》<br><br>详情请点击这里打开查看:<a href="http://www.dz7.com.cn/discuz-{$firstpost['tid']}-1-1.html">http://www.dz7.com.cn/discuz-{$firstpost['tid']}-1-1.html</a>。<br><br>DZ起点网,您的坚强后盾!</td>
                </tr>
                <tr>
                        <td style="text-indent:1.3em;font-size:14px;line-height:25px;border-bottom:1px solid #e0e0e0"><br></td>
                </tr>
                <tr>
                        <td style="color:#8a8a8a;font-size:12px;padding-left:24px;line-height:20px;"><br><div style="text-align: center;"><img src="https://set3.mail.qq.com/cgi-bin/download?sid=o98wstGkas_ITGI6&amp;upfile=nnTDFYo6EOWktJwwFfeKsGThsfTBA4MSoChZT6Ln501bLjpernjAItEu3H8eNv0v4MVo7imxxO%2F9K7OhWM3L5EbZqCtNtEA4PiDgltAlJP7b6cJiwrTeNsbLmCITuQMI" modifysize="25%" diffpixels="-1px" style="width: 124px; height: 125px;">&nbsp; &nbsp;</div><div style="text-align: center;"><span style="text-align: start;">如有任何疑问,可以添加DZ起点网站长QQ、微信进行咨询!</span></div></td>
                </tr>
                <tr>
                        <td style="color:#8a8a8a;font-size:12px;padding-left:24px;line-height:20px;">每一位DZ起点网的会员人,都在默默无闻的,帮助着新手站长朋友快速成长,解决站长朋友们在建站过程中的疑问!<br><div style="text-align: right;">-- DZ起点网</div></td></tr>
        </tbody></table>
EOT;
    if(!function_exists('sendmail')) {
      include libfile('function/mail');
    }
    sendmail($tomail['email'], $mail_subject, $mail_message);
        }


即可实现回帖邮件通知楼主!


页: [1]
查看完整版本: Discuz sendmail函数实现 发表回帖邮件通知楼主方法