You are here

function user_register_notify_user_delete in User registration notification 7

Implements hook_user_delete().

File

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

Code

function user_register_notify_user_delete($account) {
  if (in_array('delete', variable_get('user_register_notify_alert', array(
    'create' => 'create',
  )), TRUE)) {
    user_register_notify_setup_email($account, 'delete');
  }
}