aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/mailer_helper.rb
blob: c0a950d47561ce1299a0c9d682cbfbecb9fdcbf2 (plain)
1
2
3
4
5
6
7
module MailerHelper
    def contact_from_name_and_email
        contact_name = MySociety::Config.get("CONTACT_NAME", 'Alaveteli')
        contact_email = MySociety::Config.get("CONTACT_EMAIL", 'contact@localhost')
        return "#{contact_name} <#{contact_email}>"
    end
end