about summary refs log blame commit diff
path: root/app/mailers/application_mailer.rb
blob: cc585c3b76a8ee2f227cad67b34583e3a9cb8373 (plain) (tree)
1
2
3
4
5
6
7
                             
                                            
                 
 
                     
                  






                                                                   
   
# frozen_string_literal: true

class ApplicationMailer < ActionMailer::Base
  layout 'mailer'

  helper :application
  helper :instance

  protected

  def locale_for_account(account)
    I18n.with_locale(account.user_locale || I18n.default_locale) do
      yield
    end
  end
end