diff options
Diffstat (limited to 'app/helpers/mailer_helper.rb')
-rw-r--r-- | app/helpers/mailer_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/mailer_helper.rb b/app/helpers/mailer_helper.rb index fe7de0edc..c0a950d47 100644 --- a/app/helpers/mailer_helper.rb +++ b/app/helpers/mailer_helper.rb @@ -1,7 +1,7 @@ module MailerHelper def contact_from_name_and_email - contact_name = MySociety::Config.get("TRACK_SENDER_NAME", 'Alaveteli') - contact_email = MySociety::Config.get("TRACK_SENDER_EMAIL", 'contact@localhost') + contact_name = MySociety::Config.get("CONTACT_NAME", 'Alaveteli') + contact_email = MySociety::Config.get("CONTACT_EMAIL", 'contact@localhost') return "#{contact_name} <#{contact_email}>" end end |