Description #
This filter returns the email footer text.
apply_filters('fluentform/email_template_footer_text', $footerText, $form, $notification);
Usage #
add_filter('fluentform/email_template_footer_text', function ($footerText, $form, notification) {
// do your stuff
return $footerText;
}, 10, 3);
Parameters #
- $footerText (string) Footer text
- $notification (array) Notification Data
- $form (object) Form object
Placement #
This code should be placed in the functions.php file of your active theme.
Source Code #
This filter is located in FluentForm\app\Services\FormBuilder\Notifications\EmailNotifications -> getFooterText($form, $notification)