make sure to back all files that you have. this will send an email to the admin, when a new user registers on your board. the email can be sent to anyone that you want. you just have to change the line $from = $config[emailaddy]; to the email adress that you want it to go to example: $from = "
[email protected]"; open up adduser.php and find the line that says:
// ------------------------------------- // Now we need to mail them the password
and above that add:
// Email the admin about a new User $subject3 = "New user has Subscribed!"; $body = "A new user by the name of $Username_q has registered on your forums."; $from = $config[emailaddy]; $mailsend = mail("$from","$subject3","$body","From: $from");
so it looks like this:
// Email the admin about a new User $subject3 = "New user has Subscribed!"; $body = "A new user by the name of $Username_q has registered on your forums."; $from = $config[emailaddy]; $mailsend = mail("$from","$subject3","$body","From: $from"); // ------------------------------------- // Now we need to mail them the password
[:red]--------------
http://extremeforums.org