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 (auth_user, remote_addr, )
  @auth_user = auth_user
  @remote_addr = remote_addr
  @account =  #hash
  mail(
    :to => Rails.env.development? ? $system_mail_recipients : [:email],
    :subject => "IP block")
end