You are here

function htmlmail_mail in HTML Mail 7

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. 6 htmlmail.module \htmlmail_mail()
  6. 7.2 htmlmail.module \htmlmail_mail()

Implements hook_mail().

File

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

Code

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