You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/spec/mailers/previews/devise_mailer_preview.rb

10 lines
256 B

# frozen_string_literal: true
class DeviseMailerPreview < ActionMailer::Preview
def reset_password_instructions
user = User.first
token = user.send(:set_reset_password_token)
Devise::Mailer.reset_password_instructions(user, token)
end
end