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/DB/ResultSet/Questionnaire.pm | |
parent | 2db12c53190fb29666a5cf49514c0f0422ebbbfe (diff) |
Add do-not-reply config variable, removing special case from code.
Diffstat (limited to 'perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm')
-rw-r--r-- | perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm b/perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm index d6b3eb5cb..1b9521a9f 100644 --- a/perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm +++ b/perllib/FixMyStreet/DB/ResultSet/Questionnaire.pm @@ -89,9 +89,8 @@ sub send_questionnaires_period { } ); $h{url} = $cobrand->base_url($row->cobrand_data) . '/Q/' . $token->token; - my $sender = $cobrand->contact_email; + my $sender = FixMyStreet->config('DO_NOT_REPLY_EMAIL'); my $sender_name = _($cobrand->contact_name); - $sender =~ s/team/fms-DO-NOT-REPLY/; print "Sending questionnaire " . $questionnaire->id . ", problem " . $row->id . ", token " . $token->token . " to " |