Sha256: a3dde17cbc458c23b90793a8fb469c68f3b42d59d030bb70d88875f252e764e6
Contents?: true
Size: 370 Bytes
Versions: 16
Compression:
Stored size: 370 Bytes
Contents
class Notification < ActionMailer::Base default from: "<%= application_name %> Notification <noreply.<%= application_name.underscore %>@gmail.com>" def notify_us(contact) @contact = contact mail( to: 'bzbnhang@gmail.com', reply_to: "#{contact.full_name} <#{contact.email}>", subject: "[Contact Form] #{contact.full_name}" ) end end
Version data entries
16 entries across 16 versions & 1 rubygems