aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/application_mailer.rb
diff options
context:
space:
mode:
authorRobin Houston <robin.houston@gmail.com>2011-09-07 11:09:36 +0100
committerRobin Houston <robin.houston@gmail.com>2011-09-07 11:09:36 +0100
commit20b37afbe4925f649409d2f1cdd0bf37607c2e7b (patch)
tree3ff13863fd152292da82acc13ea95ad635062f11 /app/models/application_mailer.rb
parentf20e9e8f0a1ed1bf0f784ba1fb5a58c97c6f3978 (diff)
Different sender address for track messages
Use the new configuration variables TRACK_SENDER_NAME and TRACK_SENDER_EMAIL to specify the sender address for track messages, which may therefore be different from the general contact address.
Diffstat (limited to 'app/models/application_mailer.rb')
-rw-r--r--app/models/application_mailer.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/application_mailer.rb b/app/models/application_mailer.rb
index 9628d7339..e9f82a2c3 100644
--- a/app/models/application_mailer.rb
+++ b/app/models/application_mailer.rb
@@ -15,8 +15,8 @@ class ApplicationMailer < ActionMailer::Base
self.raise_delivery_errors = true
def contact_from_name_and_email
- contact_name = MySociety::Config.get("CONTACT_NAME", 'contact@localhost')
- contact_email = MySociety::Config.get("CONTACT_EMAIL", 'Alaveteli')
+ contact_name = MySociety::Config.get("CONTACT_NAME", 'Alaveteli')
+ contact_email = MySociety::Config.get("CONTACT_EMAIL", 'contact@localhost')
return "#{contact_name} <#{contact_email}>"
end