mirror of
https://github.com/we-promise/sure.git
synced 2026-04-12 08:37:22 +00:00
6 lines
105 B
Ruby
6 lines
105 B
Ruby
class PasswordMailer < ApplicationMailer
|
|
def password_reset
|
|
mail to: params[:user].email
|
|
end
|
|
end
|