X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cron.php;h=5f342ddf519aa5a3847929eed5072b23d3c87d2f;hb=a46ca9f2c279305fc8a6c7456e23f4ef46fd6fe4;hp=eb7965a22247e30d1010af54ff7af1f4be79401b;hpb=62330e789110be03d89dae3b12c28c52a904b2c1;p=timetracker.git diff --git a/cron.php b/cron.php index eb7965a2..5f342ddf 100644 --- a/cron.php +++ b/cron.php @@ -47,7 +47,7 @@ import('ttReportHelper'); $mdb2 = getConnection(); $now = time(); - $sql = "select c.id, c.cron_spec, c.report_id, c.email, c.report_condition from tt_cron c + $sql = "select c.id, c.cron_spec, c.report_id, c.email, c.cc, c.subject, c.report_condition from tt_cron c left join tt_fav_reports fr on (c.report_id = fr.id) where $now >= c.next and fr.status = 1 and c.status = 1 and c.report_id is not null and c.email is not null"; @@ -75,7 +75,7 @@ while ($val = $res->fetchRow()) { // Email report if condition is okay. if ($condition_ok) { - if (ttReportHelper::sendFavReport($report, $val['email'])) + if (ttReportHelper::sendFavReport($report, $val['subject'], $val['email'], $val['cc'])) echo "Report ".$val['report_id']. " sent to ".$val['email']."
"; else echo "Error while emailing report...
";