forked from thoughtbot/clearance
-
Notifications
You must be signed in to change notification settings - Fork 0
Disable Sending A Confirmation Email
jacortinas edited this page May 29, 2012
·
2 revisions
In order to disable the confirmation emails from going out, you simply need to create an after_create callback method and overwrite the send_confirmation_email method.
Put the following code into your User model. This code below works on the tested application using 0.8.8.
class User < ActiveRecord::Base
include Clearance::User
after_create :confirm_user
def send_confirmation_email#deliver_confirmation_email
# Do Nothing
# or MyMailer.deliver_thank_you self
end
private
def confirm_user
confirm_email!
end
end