mirror of
https://github.com/we-promise/sure.git
synced 2026-04-11 00:04:47 +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
|