vandal
Verified User
I would like to know when my resellers are adding an account, preferably in the same method as when i add an account as a reseller. (duplication account notice...etc)
#!/usr/local/bin/php
<?
$email = "[email protected]";
$subject = getenv('creator')." has just created user ".getenv('username');
$message = "This is a notification that ".getenv('creator')." has just created user ".getenv('username')."\n".
"The user has ".getenv('bandwidth')." meg of bandwidth and ".getenv('quota')." meg of disk space.";
mail($email, $subject, $message);
?>