diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oxfordshire/send-rdi-emails | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/oxfordshire/send-rdi-emails b/bin/oxfordshire/send-rdi-emails index 801c1a889..9cc3e5502 100755 --- a/bin/oxfordshire/send-rdi-emails +++ b/bin/oxfordshire/send-rdi-emails @@ -40,6 +40,12 @@ foreach my $inspector (@inspectors) { user => $inspector, mark_as_processed => 1, }; + my $email_params = { + start_date => $start_date, + end_date => $end_date, + user => $inspector, + staging_site => FixMyStreet->config('STAGING_SITE'), + }; my $rdi = FixMyStreet::Integrations::ExorRDI->new($params); try { my $hdrs = { @@ -58,7 +64,7 @@ foreach my $inspector (@inspectors) { my $result = FixMyStreet::Email::send_cron( FixMyStreet::DB->schema, - "rdi.txt", $params, $hdrs, + "rdi.txt", $email_params, $hdrs, undef, 0, $cobrand, ); if ($result) { |