|
class ConfirmUserMailer < ActionMailer::Base
|
|
default from: "noreply@rulingcom.com"
|
|
|
|
def user_confirmation_email(user)
|
|
email = user.email
|
|
@confirmation_token = user.confirmation_token
|
|
mail(:to => email, :subject => "User Confirmation instructions")
|
|
end
|
|
end
|