not tested:
edit newthread.php, find:
PHP Code:
// send email to moderators
Before that add:
PHP Code:
//Logician Send Mail to Usergroup if Forum is X Hack
$email_usergroup=X;
$email_forumid=Y;
if ($visible==1 AND $email_forumid==$forumid)
{
$emailusersDB=$DB_site->query("SELECT username,email FROM user WHERE usergroup=$email_usergroup");
while($emailusers=$DB_site->fetch_array($emailusersDB))
{
eval("\$emailmsg = \"".gettemplate("email_notifyusergroup",1,0)."\";");
eval("\$emailsubject = \"".gettemplate("emailsubject_notifyusergroup",1,0)."\";");
mail($emailusers[email],$emailsubject,$emailmsg,"From: \"$bbtitle Mailer\" <$webmasteremail>");
unset($emailmsg);unset($emailsubject);
}
}
//Logician Send Mail to Usergroup if Forum is X Hack
(Replace X with the usergroup to mail and Y with the forumid. )
Create 2 new templates named "email_notifyusergroup" and "emailsubject_notifyusergroup".
What does it do?
It sends a notification mail (content is from "email_notifyusergroup" template) to all users in usergroup X whenever a newthread (not a reply!) is send to forum Y..
And you are warned about performance above if email number is high.
Enjoy..