You are here

function messaging_mail_user in Messaging 6.4

Implementation of hook_user().

Adds fieldset and default sending method setting.

File

messaging_mail/messaging_mail.module, line 82
Simple mail using Drupal API. Messaging method plug-in

Code

function messaging_mail_user($type, $edit, &$user, $category = NULL) {
  switch ($type) {
    case 'update':

      // Claim user mail address if in destinations table
      messaging_mail_update_user($user);
  }
}