luxlaverie3_app/app/controllers/contact_controller.rb
Nicolas Bally 7dbbd1d47e suite
2016-05-26 00:59:26 +02:00

15 lines
226 B
Ruby

class ContactController < ApplicationController
layout "public"
def new
@lang = LangSite.first
end
def create
@lang = LangSite.first
@params = params
DemandeMail.prise(@params).deliver
end
end