Class: DataChecks::Notifiers::EmailNotifier::Mailer

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
lib/data_checks/notifiers/email_notifier.rb

Instance Method Summary collapse

Instance Method Details

#notify(body, options) ⇒ Object



22
23
24
25
26
# File 'lib/data_checks/notifiers/email_notifier.rb', line 22

def notify(body, options)
  mail(options) do |format|
    format.html { render html: body.html_safe }
  end
end