Sha256: db816f735df6055e8d8a175f04248284aeb34934d63561c447c29d10b074713b

Contents?: true

Size: 355 Bytes

Versions: 2

Compression:

Stored size: 355 Bytes

Contents

class WorkOrderMailer < ActionMailer::Base
  default from: "from@example.com"

  # Subject can be set in your I18n file at config/locales/en.yml
  # with the following lookup:
  #
  #   en.work_order_mailer.close_notification_to_responsible.subject
  #
  def close_notification_to_responsible
    @greeting = "Hi"

    mail to: "to@example.org"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
canmoia-0.0.2 spec/dummy/app/mailers/work_order_mailer.rb~
canmoia-0.0.1 spec/dummy/app/mailers/work_order_mailer.rb~