// ------------------------------------- added 3/25/03 by eallen<br />// Let's send the info to the admin - JoshPet<br />if ( ($Loginname) && ($Email) ) {<br />// Set this to the email you want the alert to go to<br />$adminalertemail = "[email protected]";<br />$alertheader = $mailer -> headers();<br />$alertsubject = "A New User Has Registered: $Username";<br />$alertmsg .= "You have a new user at your board.\n\n";<br />$alertmsg .= "Loginname: $Loginname \n";<br />$alertmsg .= "Displayname: $Displayname \n"; <br />$alertmsg .= "Email: $Email \n";<br />mail("$adminalertemail","$alertsubject","$alertmsg",$alertheader);<br />}