Sha256: a41a8bc54b661046f32b4ee6c81924a96a9960e0a73730b784588d5e184785ab

Contents?: true

Size: 367 Bytes

Versions: 2

Compression:

Stored size: 367 Bytes

Contents

class NotifiableOrderMailer < 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.notifiable_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/notifiable_order_mailer.rb~
canmoia-0.0.1 spec/dummy/app/mailers/notifiable_order_mailer.rb~