DB2 PHP Generator online Help
Prev | Return to chapter overview | Next |
OnAfterUserRegistration event
This event occurs after a user is registered.
Signature:
function OnAfterUserRegistration ($userName, $email)
Parameters:
$userName |
The name of the user. |
The email of the user. |
Example
The code snippet below sends an email to the site administrator when a new user is registered.
$messageBody = "A new user $userName ($email) is registered";
sendMailMessage('admin@example.com', 'A new user just registered', $messageBody);
Prev | Return to chapter overview | Next |