Class: Spotlight::ContactForm

Inherits:
MailForm::Base
  • Object
show all
Defined in:
app/models/spotlight/contact_form.rb

Instance Method Summary collapse

Instance Method Details

#headersObject



13
14
15
16
17
18
19
20
# File 'app/models/spotlight/contact_form.rb', line 13

def headers
  {
    subject: "#{I18n.t(:'blacklight.application_name')} Contact Form",
    to: current_exhibit.contact_emails.first,
    from: %("#{name}" <#{email}>),
    cc: current_exhibit.contact_emails.join(", ")
  }
end