blob: bf161b9be040d542b0e4974985d6c60513a64b60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# frozen_string_literal: true
class ApplicationMailer < ActionMailer::Base
layout 'mailer'
helper :application
helper :instance
helper :mailer
protected
def locale_for_account(account)
I18n.with_locale(account.user_locale || I18n.default_locale) do
yield
end
end
end
|