mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
9 lines
193 B
Ruby
9 lines
193 B
Ruby
class PasswordMailer < ApplicationMailer
|
|
def password_reset
|
|
@user = params[:user]
|
|
@subject = t(".subject")
|
|
@cta = t(".cta")
|
|
|
|
mail to: @user.email, subject: @subject
|
|
end
|
|
end
|