This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
class UserMailer < Devise::Mailer
|
|
default :from => "noreply@rulingcom.com"
|
|
|
|
def password_reset(user, password)
|
|
@user = user
|
|
@password = password
|
|
mail(:to => user.email,
|
|
:subject => 'Password Reset Notification')
|
|
end
|
|
end |