Sha256: cd2ab5e4c80c702c90cc775be3732db9a9618e9dc14a37c720d060b40e0eab03
Contents?: true
Size: 406 Bytes
Versions: 1
Compression:
Stored size: 406 Bytes
Contents
# frozen_string_literals: true module Jobshop class RFQResponderMailer < ApplicationMailer # Subject can be set in your I18n file at config/locales/en.yml # with the following lookup: # # en.rfq_responder_mailer.verified_contact.subject # def verified_contact @to = params[:customer_contact] @greeting = "RFQ Received" mail(to: @to.email) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jobshop-0.0.167 | app/mailers/jobshop/rfq_responder_mailer.rb |