var $send_copy = true; var $webmaster_mail = WEBMASTER_MAIL; var $webmaster_name = WEBMASTER_NAME; var $admin_mail = ADMIN_MAIL; var $admin_name = ADMIN_NAME;
Atari ST fan
Gender:
Posts: 7
54 credits Members referred : 0
« Reply #1 on: Dec 02, 2007, 10:04:03 pm »
Yes is works . I used now 2 totally different mail-adresses .
One thing i like to know . Is it possibel to send a mail only to Admin ? Then they admin can validate the request ?
Moderator Community Supporter?
Jedai Sword Master
Gender:
Posts: 6690
34708 credits Members referred : 374
It's time to use PHP5!
« Reply #2 on: Dec 02, 2007, 11:54:04 pm »
check this mode (login script)
if (isset($_GET['activate']) && isset($_GET['ident'])) { // this two variables are required for activating/updating the account/password $my_access->auto_activation = true; // use this (true/false) to stop the automatic activation $my_access->activate_account($_GET['activate'], $_GET['ident']); // the activation method }