homepage redesign

This commit is contained in:
Lee Lawlor
2014-05-08 20:01:41 -04:00
parent e5570ec3af
commit ac83280b68
57 changed files with 569 additions and 328 deletions

View File

@ -8,4 +8,14 @@ class Mailer < ActionMailer::Base
:subject => t(:password_reset_subject))
end
def contact_us(from_email, message)
mail(to: SUPPORT_EMAIL,
from: from_email,
reply_to: from_email,
body: message,
content_type: "text/html",
subject: "Contact Us Form")
end
end