function drupalchat_mail in DrupalChat 7
Same name and namespace in other branches
- 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'];
}