There is no global notification message. However, if you would like to add your text to the notification which is in the form builder, try this (append to the autoResponder rather than replace it completely:
[php]
function pre_submission($form) {
$message = $form['autoResponder']['message'];
$form['autoResponder']['message'] = "<strong>test test test</strong>\n\n" . $message;
return $form;
}
That will add your custom text before the notification you set up in the form builder. If you want the notification from the form builder first, and your text after, do this instead:
[php]
function pre_submission($form) {
$form['autoResponder']['message'] .= "\n\n<strong>test test test</strong>";
return $form;
}
I think you have it now :-)
Posted 12 years ago on Friday October 12, 2012 |
Permalink