You are here

function drupalchat_mail in DrupalChat 7

Same name and namespace in other branches
  1. 7.2 drupalchat.module \drupalchat_mail()

File

./drupalchat.module, line 1422
Module code for DrupalChat.

Code

function drupalchat_mail($key, &$message, $params) {
  $message['subject'] = $params['subject'];
  $message['body'][] = $params['contact_details'];
  $message['body'][] = $params['message'];
}