11 lines
174 B
Ruby
11 lines
174 B
Ruby
class Public::ContactController < ApplicationController
|
|
layout "public"
|
|
def new
|
|
end
|
|
|
|
def create
|
|
@params = params
|
|
DemandeMail.prise(@params).deliver
|
|
end
|
|
end
|