mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
10 lines
193 B
Ruby
10 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
|