function drupalchat_mail in DrupalChat 7.2
Same name and namespace in other branches
- 7 drupalchat.module \drupalchat_mail()
File
- ./
drupalchat.module, line 1444 - Module code for DrupalChat.
Code
function drupalchat_mail($key, &$message, $params) {
$message['subject'] = $params['subject'];
$message['body'][] = $params['contact_details'];
$message['body'][] = $params['message'];
}