formcierge_email_body
Filter
Since v1.0.0
Filter the raw email body template before merge tags are resolved.
Parameters
$body
string
The raw email body with unresolved merge tags.
$form_id
int
The form ID.
$entry_id
int
The entry ID.
includes/Core/Mailer.php
Basic Usage
add_filter( 'formcierge_email_body', function ( $body, $form_id, $entry_id ) {
return $body . 'nn---nSent by My Plugin';
}, 10, 3 );