diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-01-02 12:52:26 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-01-02 12:52:30 +0000 |
commit | 16e4d3b007585a1084455b09e9ad6d7048eb5c2a (patch) | |
tree | d770d106a55847df80a6bcf70293bb9c26f13a4e /perllib/FixMyStreet/App.pm | |
parent | 2db12c53190fb29666a5cf49514c0f0422ebbbfe (diff) |
Add do-not-reply config variable, removing special case from code.
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r-- | perllib/FixMyStreet/App.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm index fda9d665c..9c7aba9e5 100644 --- a/perllib/FixMyStreet/App.pm +++ b/perllib/FixMyStreet/App.pm @@ -274,9 +274,8 @@ sub send_email { my $template = shift; my $extra_stash_values = shift || {}; - my $sender = $c->cobrand->contact_email; + my $sender = $c->config->{DO_NOT_REPLY_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 = { |