You are here

function webform_mail in Webform 6.2

Same name and namespace in other branches
  1. 8.5 webform.module \webform_mail()
  2. 6.3 webform.module \webform_mail()
  3. 7.4 webform.module \webform_mail()
  4. 7.3 webform.module \webform_mail()
  5. 6.x webform.module \webform_mail()

Implementation of hook_mail().

1 string reference to 'webform_mail'
webform_client_form_submit in ./webform.module

File

./webform.module, line 1255

Code

function webform_mail($key, &$message, $params) {
  $message['headers'] = array_merge($message['headers'], $params['headers']);
  $message['subject'] = $params['subject'];
  $message['body'][] = $params['message'];
}