diff options
author | Struan Donald <struan@exo.org.uk> | 2011-06-07 16:46:19 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-06-07 16:46:19 +0100 |
commit | 0f7de6563d4c96fa1ec9c429cca7e42259e25422 (patch) | |
tree | 44383db10edd2136e471bba208170550d095b97d /perllib/FixMyStreet/App.pm | |
parent | a82a51695eacf94b7523502b3a48e1de6836fec0 (diff) | |
parent | 77460615cf9d08175e385ada6e03ba96b512c935 (diff) |
Merge branch 'migrate_to_catalyst' of ssh://git.mysociety.org/data/git/public/fixmystreet into migrate_to_catalyst
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r-- | perllib/FixMyStreet/App.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index 10e0dbb28..ec7ec3ff0 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -275,9 +275,13 @@ sub send_email { my $template = shift; my $extra_stash_values = shift || {}; + my $sender = $c->cobrand->contact_email; + my $sender_name = $c->cobrand->contact_name; + $sender =~ s/team/fms-DO-NOT-REPLY/; + # create the vars to pass to the email template my $vars = { - from => FixMyStreet->config('CONTACT_EMAIL'), + from => [ $sender, _($sender_name) ], %{ $c->stash }, %$extra_stash_values, additional_template_paths => [ |