Skip to content

Instantly share code, notes, and snippets.

@remi
Created August 26, 2014 12:55
Show Gist options
  • Save remi/dbed458d7eb0ebdcfc25 to your computer and use it in GitHub Desktop.
Save remi/dbed458d7eb0ebdcfc25 to your computer and use it in GitHub Desktop.
Debug Rails mailer views
# config/routes.rb
get 'mailer_test', to: 'application#mailer_test'
# app/controllers/application_controller.rb
def mailer_test
render text: UserMailer.welcome_email(User.first).body.to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment