puzzle-scoreboard/app/mailers/passwords_mailer.rb
sto 50280ce389
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Initial app
2025-03-14 15:36:05 +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