Class: FormMailer

Inherits:
ActionMailer::Base
  • Object
show all
Defined in:
app/models/form_mailer.rb

Instance Method Summary collapse

Instance Method Details

#mail(options) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
# File 'app/models/form_mailer.rb', line 3

def mail(options)
  content_type  options[:content_type]
  charset       options[:charset]
  headers       options[:headers]
  
  recipients    options[:recipients]
  from          options[:from]
  cc            options[:cc]
  bcc           options[:bcc]
  subject       options[:subject]
  body          options[:body]
end