X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d36fab2913d10bef4eae2cee7c34875f20311af9..79276fb43abc429cd5515f81005281e303a16dd8:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index df30d651b..a1fde49b3 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -48,7 +48,7 @@ class Notifier < ActionMailer::Base def message_notification(message) common_headers message.recipient from_header message.sender.display_name, "m", message.id, message.digest - subject I18n.t('notifier.message_notification.subject', :user => message.sender.display_name, :locale => locale) + subject I18n.t('notifier.message_notification.subject_header', :subject => message.title, :locale => locale) body :to_user => message.recipient.display_name, :from_user => message.sender.display_name, :body => message.body, @@ -99,13 +99,13 @@ private def common_headers(recipient) recipients recipient.email locale recipient.preferred_language_from(I18n.available_locales) - from "OpenStreetMap " - headers "return-path" => "bounces@openstreetmap.org", + from EMAIL_FROM + headers "return-path" => EMAIL_RETURN_PATH, "Auto-Submitted" => "auto-generated" end def from_header(name, type, id, digest) - if domain = APP_CONFIG['messages_domain'] + if domain = MESSAGES_DOMAIN from quote_address_if_necessary("#{name} <#{type}-#{id}-#{digest[0,6]}@#{domain}>", "utf-8") end end