Skip to content

Instantly share code, notes, and snippets.

@cj
Created January 5, 2012 16:03
Show Gist options
  • Save cj/dd34a91a66df5b171a7b to your computer and use it in GitHub Desktop.
Save cj/dd34a91a66df5b171a7b to your computer and use it in GitHub Desktop.
class Auto::EmailsController < ApplicationController
respond_to :html, :json
def create
end
def legacy
AutoMailer.legacy(params[:email]).deliver
respond_with({:msg => :success}, :location => nil)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment