forked from saurabh/orbit4-5
10 lines
271 B
Ruby
10 lines
271 B
Ruby
|
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
|