class Textris::Delivery::Mail::Mailer

Public Instance Methods

notify(from, to, subject, body) click to toggle source
# File lib/textris/delivery/mail.rb, line 5
def notify(from, to, subject, body)
  mail :from => from, :to => to, :subject => subject, :body => body
end