Sha256: c6c41e45fd55db35ba2ca9ff8a448f65d9bfb324a9dce894a017273fae801f09

Contents?: true

Size: 311 Bytes

Versions: 3

Compression:

Stored size: 311 Bytes

Contents

module PoBox
  class EmailableMailer < ApplicationMailer
    def missing_emailable(mail)
      mail(
        to: mail.sender,
        subject: "Inbox not found",
        body: "We were unable to find an inbox for this email. Please contact support.",
        content_type: "text/html"
      )
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
po_box-0.1.2 app/mailers/po_box/emailable_mailer.rb
po_box-0.1.1 app/mailers/po_box/emailable_mailer.rb
po_box-0.1.0 app/mailers/po_box/emailable_mailer.rb