MyBB Community Forums

Full Version: Email Announce on register
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to find a mod that will send an email to either a certain user group or to the main admin when they sign up
i hate bumping but *bump*
open inc/integration.php and find

function accountCreated($uid)
{
// Called after an account is created
global $db;
}

and replace with

function accountCreated($uid)
{
// Called after an account is created
global $db;
$subject="New Account on $settings[bbname]";
$message="A New Account has been created etc";
mymail($settings[adminemail],$subject,$message);
}

I haven't tested it but that should work. I think i may actually make this into a mod with options for things to do when people register, such as sending welcome PMs and emailing admins.