wedding-planner/app/mailers/passwords_mailer.rb
Manuel Bustillo 45b16598e3 Revert "Add copyright notice"
This reverts commit 134bf27955e6caab0f7cc731f72551daae6f2a17.
2024-11-30 10:44:22 +01:00

7 lines
151 B
Ruby

class PasswordsMailer < ApplicationMailer
def reset(user)
@user = user
mail subject: "Reset your password", to: user.email_address
end
end