nb_app/app/controllers/contact_controller.rb
2013-04-11 17:17:12 +02:00

10 lines
148 B
Ruby

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