diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-06-03 23:22:30 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-06-03 23:22:30 +0100 |
commit | 1edf769cf115749e2ea8b2065f11fa6cd8c76364 (patch) | |
tree | 0accd8c3b063df5f49175d66d9ccd3f5a87574da | |
parent | b558fe5dcebf03599627bca83a14df50408f81c7 (diff) |
Copy the admin team on messages sent to users
When a user is notified of a request having been hidden,
BCC the site admin team.
-rw-r--r-- | app/models/contact_mailer.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/contact_mailer.rb b/app/models/contact_mailer.rb index 800fe54e4..6e781d48c 100644 --- a/app/models/contact_mailer.rb +++ b/app/models/contact_mailer.rb @@ -52,6 +52,7 @@ class ContactMailer < ApplicationMailer :from_user => @from, :recipient_user => recipient_user, } + bcc MySociety::Config::get("CONTACT_EMAIL") end end |