Sha256: 4b6e4927f5aede07f22c8b2c8cb30ccfa70093ea2f79870050aa2e1a1e09c748

Contents?: true

Size: 370 Bytes

Versions: 4

Compression:

Stored size: 370 Bytes

Contents

class Notifier < ApplicationMailer
  def welcome
    mail
  end

  def invitation(email, opt_arg = nil)
    mail
  end

  def recommendation(email)
    mail template_path: 'notifications'
  end

  def custom_template_name
    mail template_name: 'invitation'
  end

  def hidden
    mail
  end

  def multipart
    mail
  end

  def with_slim_template
    mail
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
maily-0.9.0 spec/dummy/app/mailers/notifier.rb
maily-0.8.2 spec/dummy/app/mailers/notifier.rb
maily-0.8.1 spec/dummy/app/mailers/notifier.rb
maily-0.8.0 spec/dummy/app/mailers/notifier.rb