Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
7 lines
274 B
Ruby
7 lines
274 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/passwords_mailer
|
|
class PasswordsMailerPreview < ActionMailer::Preview
|
|
# Preview this email at http://localhost:3000/rails/mailers/passwords_mailer/reset
|
|
def reset
|
|
PasswordsMailer.reset(User.take)
|
|
end
|
|
end
|