1 class OrderController < ApplicationController
8 #redirect_to :action => "pause"
12 @order = Order.new params[:order]
14 Promomailer.deliver_promo_order @order
15 redirect_to "/order/thanks" and return
17 flash.now[:error] = "Your submission could not be processed, please fix the problems listed below: \n"
18 flash.now[:error] += @order.errors.full_messages.join("\n")