Title / Description
Code class ContactsController < ApplicationController layout 'site' def new @title = "Contact" @contact = Contact.new end def create @title = "Contact" @contact = Contact.new params[:contact] if @contact.valid? @contact.deliver flash[:notice] = "Contact Message Sent" redirect_to root_url else render :action => 'new' end end end
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code