Sha256: a9c9ee0f8bcca1eb7758494cdb8050d3d8c58e37ae06b9c9cf1b6d8451a25343

Contents?: true

Size: 604 Bytes

Versions: 1

Compression:

Stored size: 604 Bytes

Contents

class Notifier < ActionMailer::Base
  TO = 'to@example.org'
  MANY_TO = [TO, 'to2@example.org']
  FROM = 'from@example.org'
  SUBJECT = 'Test Subject'
  REPLY_TO = 'reply@example.org'
  BCC = 'bcc@example.org'

  default to: TO, from: FROM, subject: SUBJECT

  def test
    mail
  end

  def test_reply_to
    mail reply_to: REPLY_TO, template_name: 'test'
  end

  def test_bcc
    mail bcc: BCC, template_name: 'test'
  end

  def test_from_name
    mail from_name: FROM, template_name: 'test'
  end

  def to_many
    mail to: MANY_TO, template_name: 'test'
  end

  def multipart
    mail
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mandrill-mailer-rails-0.0.1 spec/rails_app/app/mailers/notifier.rb