diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-05-25 17:24:12 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-05-25 17:24:12 +0100 |
commit | 8df7ff6f68edeb92e4aa8b99c0f63a1ed6487b75 (patch) | |
tree | 27c050e809f2d8519a55583509d22acb1c8b9dd8 /perllib/FixMyStreet/Script/Reports.pm | |
parent | 4ca6f431262c059ca1bb7cfe1e6188d363ca5a89 (diff) | |
parent | f92fa912ef079d28c1392c10ede73c0b072573c1 (diff) |
Merge branch '1410-email-template'
Diffstat (limited to 'perllib/FixMyStreet/Script/Reports.pm')
-rw-r--r-- | perllib/FixMyStreet/Script/Reports.pm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/Script/Reports.pm b/perllib/FixMyStreet/Script/Reports.pm index 75111b852..278c58af1 100644 --- a/perllib/FixMyStreet/Script/Reports.pm +++ b/perllib/FixMyStreet/Script/Reports.pm @@ -289,19 +289,18 @@ sub _send_report_sent_email { my $nomail = shift; my $cobrand = shift; - my $template = FixMyStreet->get_email_template($row->cobrand, $row->lang, 'confirm_report_sent.txt'); - FixMyStreet::Email::send_cron( $row->result_source->schema, + 'confirm_report_sent.txt', + $h, { - _template_ => $template, - _parameters_ => $h, To => $row->user->email, From => [ FixMyStreet->config('CONTACT_EMAIL'), $cobrand->contact_name ], }, FixMyStreet->config('CONTACT_EMAIL'), $nomail, - $cobrand + $cobrand, + $row->lang, ); } |