You are here

function htmlmail_mail in HTML Mail 6

Same name and namespace in other branches
  1. 8.3 htmlmail.module \htmlmail_mail()
  2. 8 htmlmail.module \htmlmail_mail()
  3. 8.2 htmlmail.module \htmlmail_mail()
  4. 6.2 htmlmail.module \htmlmail_mail()
  5. 7.2 htmlmail.module \htmlmail_mail()
  6. 7 htmlmail.module \htmlmail_mail()

Implementation of hook_mail().

File

./htmlmail.module, line 178
Send system emails in HTML

Code

function htmlmail_mail($key, &$message, $params) {
  switch ($key) {
    case 'test':
      $message['subject'] = $params['subject'];
      $message['body'] = $params['body'];
      break;
  }
}