Fixed Scheduled task email plugin update code not provided $sentIds and $failedIds as described in help

jcc

Member
Fabrik 4.2, Joomla 4.4.4

The email plugin for scheduled cron tasks is not providing the $sentIds and $failedIds arrays as described in the help text. To fix this, I modified the file plugins/fabrik_cron/email/email.php as follows:

Line 238:

// thm 2024-08-06 - Added ",'sentIds'=>$sentIds,'failedIds'=>$failedIds" to supply the variables described in the help text
Php::Eval(['code' => $field, 'vars'=>['listModel'=>$listModel,'sentIds'=>$sentIds,'failedIds'=>$failedIds]]);
 
Back
Top