Table of Contents
Description #
This filter returns the email footer.
apply_filters('fluentform_email_footer', $emailFooter, $form, $notification);
Usage #
add_filter('fluentform_email_footer', function ($emailFooter, $form, $notification) {
// do your stuff
return $emailFooter;
}, 10, 3);
Parameters #
- $emailFooter (string) Email Footer
- $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 app/Services/FormBuilder/Notifications/EmailNotification.php