diff options
-rw-r--r-- | notes/catalyst-master-merge-todos.txt | 1 | ||||
-rw-r--r-- | perllib/FixMyStreet/App/Model/EmailSend.pm | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/notes/catalyst-master-merge-todos.txt b/notes/catalyst-master-merge-todos.txt index cdc9a3efc..51194fed3 100644 --- a/notes/catalyst-master-merge-todos.txt +++ b/notes/catalyst-master-merge-todos.txt @@ -8,3 +8,4 @@ merge in from master southhampton templates +Add newsletter signup to bottom of problem confirm page diff --git a/perllib/FixMyStreet/App/Model/EmailSend.pm b/perllib/FixMyStreet/App/Model/EmailSend.pm index de85857f7..73086c65f 100644 --- a/perllib/FixMyStreet/App/Model/EmailSend.pm +++ b/perllib/FixMyStreet/App/Model/EmailSend.pm @@ -36,7 +36,7 @@ elsif ( my $smtp_host = FixMyStreet->config('SMTP_SMARTHOST') ) { # Email::Send::SMTP $args = { mailer => 'SMTP', - mailer_args => { Host => $smtp_host }, + mailer_args => [ Host => $smtp_host ], }; } else { |