wedding-planner/app/mailers/passwords_mailer.rb

9 lines
189 B
Ruby
Raw Permalink Normal View History

2024-11-18 23:27:50 +00:00
# Copyright (C) 2024 Manuel Bustillo
class PasswordsMailer < ApplicationMailer
def reset(user)
@user = user
mail subject: "Reset your password", to: user.email_address
end
end