View raw

1 class PasswordsMailer < ApplicationMailer 2 def reset(user) 3 @user = user 4 mail subject: "Reset your password", to: user.email_address 5 end 6 end 7