Files
mozo-backend/app/mailers/notifier.rb
T
2015-08-12 17:37:47 +02:00

11 lines
317 B
Ruby

class Notifier < ActionMailer::Base
default from: "Qwaiter <service@mozo.bar>"
layout 'mail'
def contact_form(contact_form_id)
@contact_form = Cmtool::ContactForm.find(contact_form_id)
I18n.locale = :en
mail to: "bterkuile+mozo-contact-form@gmail.com", subject: "[CONTACTFORM] new entry"
end
end