X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dae3dcf87edcfc0648cd0b93b069b0eee67d3ab7..e74163d036a0520de62667b2e77ffbe66bc7c72d:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 23f7b9907..13751560f 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -172,6 +172,13 @@ class Notifier < ActionMailer::Base end end + def new_issue_notification(recipient) + with_recipient_locale recipient do + subject = I18n.t("notifier.new_issue_notification.subject") + mail :to => recipient.email, :subject => subject + end + end + private def with_recipient_locale(recipient) @@ -187,4 +194,5 @@ class Notifier < ActionMailer::Base EMAIL_FROM end end + end