2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 11:20:07 -07:00
|
|
|
class NotificationMailer < ApplicationMailer
|
|
|
|
helper StreamEntriesHelper
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def mention(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.mention.subject', name: @status.account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def follow(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
2016-11-16 08:51:02 -08:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.follow.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def favourite(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.favourite.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
|
2016-11-19 15:33:02 -08:00
|
|
|
def reblog(recipient, notification)
|
|
|
|
@me = recipient
|
|
|
|
@account = notification.from_account
|
|
|
|
@status = notification.target_status
|
2016-11-16 08:51:02 -08:00
|
|
|
|
|
|
|
I18n.with_locale(@me.user.locale || I18n.default_locale) do
|
|
|
|
mail to: @me.user.email, subject: I18n.t('notification_mailer.reblog.subject', name: @account.acct)
|
|
|
|
end
|
2016-03-19 11:20:07 -07:00
|
|
|
end
|
|
|
|
end
|