Skip to content

Instantly share code, notes, and snippets.

@roidrage
Created September 30, 2008 10:21
Show Gist options
  • Save roidrage/13783 to your computer and use it in GitHub Desktop.
Save roidrage/13783 to your computer and use it in GitHub Desktop.
class AccountController < ApplicationController
def signup
@user = User.new(params[:user])
if @user.save
run_later do
AccountMailer.deliver_signup(@user)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment