Description #
This is a scheduled event action that runs daily in the background. You can hook into it and 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 action is located in fluentform/app/Hooks/Handlers/ActivationHandler.php -> setCronSchedule(), fluentform/app/Hooks/actions.php