laverie_app/app/controllers/contact_controller.rb
2014-09-25 15:26:48 +02:00

10 lines
148 B
Ruby

class ContactController < ApplicationController
def new
end
def create
@params = params
DemandeMail.prise(@params).deliver
end
end