Class: Textris::Delivery::Mail::Mailer

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
lib/textris/delivery/mail.rb

Instance Method Summary collapse

Instance Method Details

#notify(from, to, subject, body) ⇒ Object



5
6
7
# File 'lib/textris/delivery/mail.rb', line 5

def notify(from, to, subject, body)
  mail :from => from, :to => to, :subject => subject, :body => body
end