You are here

function anonymous_publishing_cl_mail in Anonymous Publishing 8

Implements hook_mail().

File

modules/anonymous_publishing_cl/anonymous_publishing_cl.module, line 382
Main hooks for anonymous publishing cl module.

Code

function anonymous_publishing_cl_mail($key, &$message, $params) {
  switch ($key) {

    // Send a simple message from the contact form.
    case 'verify':
      $message['subject'] = $params['subject'];
      $message['body'] = $params['body'];
      break;
  }
}