You are here

function user_register_notify_user_insert in User registration notification 7

Implements hook_user_insert().

File

./user_register_notify.module, line 61
Installation file for the user_register_notify module.

Code

function user_register_notify_user_insert(&$edit, $account, $category = NULL) {
  if (in_array('create', variable_get('user_register_notify_alert', array(
    'create' => 'create',
  )), TRUE)) {
    user_register_notify_setup_email($account, 'create');
  }
}