Class: Spina::ContactFormMailer

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
app/mailers/spina/contact_form_mailer.rb

Instance Method Summary collapse

Instance Method Details

#send_form(email_content) ⇒ Object



6
7
8
9
# File 'app/mailers/spina/contact_form_mailer.rb', line 6

def send_form(email_content)
  @email_content = email_content
  mail(to: '[email protected]', subject: 'From your Contact Form')
end