You are here

function user_register_notify_user_update in User registration notification 7

Implements hook_user_update().

File

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

Code

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