|
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 = [tr]
[td]
[img][/img]
| [url=,登录[/url] | [url=,注册[/url] |
[/td]
[/tr]
[tr]
[td]尊敬的DZ起点网会员:{$firstpost['author',}
有新网友回复了您在起点网发布的帖子《[url=,{$firstpost['subject',}[/url]》
详情请点击这里打开查看:[url=]http://www.dz7.com.cn/discuz-{$firstpost['tid',}-1-1.html[/url]。
DZ起点网,您的坚强后盾![/td]
[/tr]
[tr]
[td]
[/td]
[/tr]
[tr]
[td]
[img][/img]
如有任何疑问,可以添加DZ起点网站长QQ、微信进行咨询![/td]
[/tr]
[tr]
[td]每一位DZ起点网的会员人,都在默默无闻的,帮助着新手站长朋友快速成长,解决站长朋友们在建站过程中的疑问!
-- DZ起点网[/td][/tr]
[/table]
EOT;
if(!function_exists('sendmail')) {
include libfile('function/mail');
}
sendmail($tomail['email',, $mail_subject, $mail_message);
}
复制代码
即可实现回帖邮件通知楼主! |
|