Skip to content

Instantly share code, notes, and snippets.

@gtm19
Forked from ThawanFidelis/preview_devise_mail.rb
Last active April 24, 2021 21:22
Show Gist options
  • Save gtm19/4b826a4abb8124285a4d4b343bdf9222 to your computer and use it in GitHub Desktop.
Save gtm19/4b826a4abb8124285a4d4b343bdf9222 to your computer and use it in GitHub Desktop.
Preview Devise Mails
# app/test/mailers/previews/devise_mailer_preview.rb
class DeviseMailerPreview < ActionMailer::Preview
def confirmation_instructions
Devise::Mailer.confirmation_instructions(User.first, {})
end
def unlock_instructions
Devise::Mailer.unlock_instructions(User.first, "faketoken")
end
def reset_password_instructions
Devise::Mailer.reset_password_instructions(User.first, "faketoken")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment