Cod: Selectaţi tot
#-----[ Open ]------------------------------------------
#
includes/functions_post.php
#
#-----[ Find ]------------------------------------------
#
if ($mode == 'newtopic')
{
$topic_id = $db->sql_nextid();
#
#-----[ Add After ]------------------------------------------
#
# email first post - BEGIN
$forumURL = "http://www.yourdomain.com/forums";
$adminEmail = "admin@yourdomain.com";
$subject = "New Post Notification";
$headers = "From: Yourdomain.com Forums Admin <contact01@yourdomain.com>\r\n";
$message = "A new post was made to your forum, click on the link below to view the topic:\n\nLink: $forumURL/viewtopic.php?t=$topic_id";
@mail ( $adminEmail, $subject, $message, $headers);
# email first post - END
#