Description #
This action fires after fluentform plugin is loaded.
/*
* Source Action
*/
do_action('fluentform_email_summary_details', [
'recipients' => $recipients,
'email_subject' => $emailSubject,
'email_body' => $emailBody
], $data, $emailResult);
Usage #
add_action('fluentform/email_summary_details', function ($emailData, $data, $emailResult)
{
// Do your stuffs here
}, 10, 3);
This code should be placed in the functions.php file of your active theme.
Source Code #
This action is located in fluentform/app/Services/Scheduler/Scheduler.php -> processEmailReport()