rails-guide-store/test/mailers/previews/passwords_mailer_preview.rb

8 lines
274 B
Ruby
Raw Normal View History

2025-01-24 17:32:29 +00:00
# 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