diff options
author | Mark Wells <mark@freeside.biz> | 2016-09-07 15:08:14 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-09-07 15:08:14 -0700 |
commit | 2d2662d900652d9b1f242e9affd5a6e67c453f4d (patch) | |
tree | a8018863fd9bc6fac6d149a9dbf429dab49c3723 /FS/bin | |
parent | 4fd97fe8a23cbe875600b838f01a9ed10641f61e (diff) |
add email delivery of saved searches, #72101
Diffstat (limited to 'FS/bin')
-rwxr-xr-x | FS/bin/freeside-daily | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FS/bin/freeside-daily b/FS/bin/freeside-daily index 6a2daf934..03d235061 100755 --- a/FS/bin/freeside-daily +++ b/FS/bin/freeside-daily @@ -79,6 +79,10 @@ pay_batch_receive(%opt); use FS::Cron::export_batch qw(export_batch_submit); export_batch_submit(%opt); +#does nothing unless there are users with subscribed searches +use FS::Cron::send_subscribed qw(send_subscribed); +send_subscribed(%opt); + #clears out cacti imports & deletes select database cache files use FS::Cron::cleanup qw( cleanup cleanup_before_backup ); cleanup_before_backup(); |