Method: Fortifier::NotifierMailer#account_ip_blocked
- Defined in:
- app/mailers/fortifier/notifier_mailer.rb
#account_ip_blocked(auth_user, remote_addr, account) ⇒ Object
40 41 42 43 44 45 46 47 |
# File 'app/mailers/fortifier/notifier_mailer.rb', line 40 def account_ip_blocked(auth_user, remote_addr, account) @auth_user = auth_user @remote_addr = remote_addr @account = account #hash mail( :to => Rails.env.development? ? $system_mail_recipients : account[:email], :subject => "IP block") end |