A website template with lots of features, built with ruby on rails.

user_mailer.rb 323B

1234567891011121314
  1. class UserMailer < ActionMailer::Base
  2. default from: "from@example.com"
  3. def contact_message(contact_message)
  4. @config = Info.first
  5. @msg = contact_message
  6. mail :subject => @msg.title,
  7. :to => @config.contact_email,
  8. :from => @msg.email,
  9. :from_name => @msg.name
  10. end
  11. end