This hook runs after rendering the email footer. You can use this to insert anything in the footer.
Description #
This action fires after fluentform plugin is loaded.
/*
* Source Action
*/
do_action('fluentform/email_template_after_footer', $form, $notification);
Usage #
add_action('fluentform/email_template_after_footer', function ( $form, $notification)
{
// Do your stuffs here
}, 10, 2);
This code should be placed in the functions.php file of your active theme.
Parameters #
- $form (object) Form Object
- $notification (array) Notification Data
Source Code #
This action is located in fluentform/app/Views/email/template/footer.php