Table of Contents
Description #
This is a schedule event action which runs daily in background. You can hook into to it run any scheduled action automatically.
/*
* Source Action
*/
do_action('fluentform_do_email_report_scheduled_tasks');
Usage #
add_action('fluentform_do_email_report_scheduled_tasks', 'custom_function', 10, 0);
function custom_function()
{
// Do your stuff here
}
Source Code #
This filter is located in fluentform/app/Hooks/Backend.php