Sha256: 4bd22114f2fd84ddd54d7f49bbf030765c1f0da6d0037038d3303eede7c9fbf4
Contents?: true
Size: 886 Bytes
Versions: 20
Compression:
Stored size: 886 Bytes
Contents
module Cmor::Contact class ContactRequestMailer < ApplicationMailer # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.contact_request_mailer.notify.subject # def notify(contact_request) @contact_request = contact_request mail to: notification_recipients, from: notification_sender(contact_request), subject: notification_subject end private def notification_subject default_i18n_subject(application_name: Rails.application.class.to_s.split('::').first.underscore.humanize.titleize) end def notification_sender(contact_request) "#{contact_request.name} <#{contact_request.email}>" end def notification_recipients ENV.fetch('CMOR_CONTACT_RECIPIENTS') { Cmor::Contact::Configuration.recipients[Rails.env] } end end end
Version data entries
20 entries across 20 versions & 1 rubygems