10 lines
148 B
Ruby
10 lines
148 B
Ruby
class ContactController < ApplicationController
|
|
def new
|
|
end
|
|
|
|
def create
|
|
@params = params
|
|
DemandeMail.prise(@params).deliver
|
|
end
|
|
end
|