chasselay_app/app/controllers/contact_controller.rb
2013-09-18 15:24:45 +02:00

10 lines
148 B
Ruby

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