You are here

function patron_mail in Library 5.2

Same name and namespace in other branches
  1. 6 patron/patron.module \patron_mail()

Implementation of hook_mail()

File

patron/patron.module, line 482

Code

function patron_mail($key, &$message, $params) {
  $language = $message['language'];
  switch ($key) {
    case 'email_form':
      $message['subject'] .= $params['subject'];
      $message['body'][] = $params['message'];
      break;
  }
}