mirror of https://github.com/ThunixdotNet/www.git
more cleanup
This commit is contained in:
parent
251cbb17a0
commit
259e05fd00
|
@ -23,7 +23,7 @@ if ( $tv != "tildeverse" ) {
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
shell_exec("echo '$mailbody' | /usr/bin/mail -s 'New User Registration' $destination_addr ");
|
shell_exec("echo '$mailbody' | /usr/bin/mail -s '$subject' $destination_addr ");
|
||||||
|
|
||||||
// In the future, here, we *should* be able to build a process that
|
// In the future, here, we *should* be able to build a process that
|
||||||
// somehow auto-verifies the user, and instead of email, it'll kick off the new user process here
|
// somehow auto-verifies the user, and instead of email, it'll kick off the new user process here
|
||||||
|
|
|
@ -10,7 +10,7 @@ $tv = $_GET['tv'];
|
||||||
|
|
||||||
$destination_addr = "ubergeek@thunix.net";
|
$destination_addr = "ubergeek@thunix.net";
|
||||||
$subject = "New User Registration";
|
$subject = "New User Registration";
|
||||||
$mailbody ="A new user has tried to register.
|
$mailbody = "A new user has tried to register.
|
||||||
Username: $username
|
Username: $username
|
||||||
Real Name: $name
|
Real Name: $name
|
||||||
Email Address: $email
|
Email Address: $email
|
||||||
|
@ -23,7 +23,7 @@ if ( $tv != "tildeverse" ) {
|
||||||
die();
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
shell_exec("echo '$mailbody' | /usr/bin/mail -s 'New User Registration' $destination_addr ");
|
shell_exec("echo '$mailbody' | /usr/bin/mail -s '$subject' $destination_addr ");
|
||||||
|
|
||||||
// In the future, here, we *should* be able to build a process that
|
// In the future, here, we *should* be able to build a process that
|
||||||
// somehow auto-verifies the user, and instead of email, it'll kick off the new user process here
|
// somehow auto-verifies the user, and instead of email, it'll kick off the new user process here
|
||||||
|
|
Loading…
Reference in New Issue