mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-17 07:52:53 +00:00
8 lines
308 B
Ruby
8 lines
308 B
Ruby
# Preview all emails at http://localhost:3000/rails/mailers/password_reset_mailer
|
|
class PasswordResetMailerPreview < ActionMailer::Preview
|
|
# Preview this email at http://localhost:3000/rails/mailers/password_reset_mailer/reset_password
|
|
def reset_password
|
|
PasswordResetMailer.reset_password
|
|
end
|
|
end
|