Sha256: 8fe3ec809753751efc7fdf16b8ccb25e92f2e4c43cfa2abca766e749c147d70d

Contents?: true

Size: 429 Bytes

Versions: 1

Compression:

Stored size: 429 Bytes

Contents

class NotificationMailer < ActionMailer::Base
  layout "notification_mailer"

  default from: "Johnny Quids<quidlicker@example.com>"

  def welcome_email
    mail(to: "archie@example.com", :subject => "We need dry ice")
  end

  def email_with_html_only
    mail(to: "archie@example.com", :subject => "We need dry ice")
  end

  def welcome_html_email
    mail(to: "archie@example.com", :subject => "We need dry ice")
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
actionmailer-instyle-0.0.1 spec/internal/app/mailers/notification_mailer.rb