I need to send registration details somewhere else when Drupal completes a registration. I can't find the correct variables for the switch. I tried this but it's not working. This function is in my module "externalnewsletter".
function externalnewsletter_user($op, &$edit, &$account, $category = NULL) {
if ($op == 'register' && $category == 'submit') {
// do stuff...
}
}
thanks