9 lines
239 B
Ruby
9 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
module NotificationMailers
|
|
class CsrfTokenFail < NotificationMailers::Base
|
|
def set_headers
|
|
@headers[:subject] = I18n.t("notifier.csrf_token_fail.subject", name: @recipient.name)
|
|
end
|
|
end
|
|
end
|