letter_opener.rb 596 B

12345678910111213
  1. LetterOpener.configure do |config|
  2. # To overrider the location for message storage.
  3. # Default value is <tt>tmp/letter_opener</tt>
  4. #config.location = Rails.root.join('tmp', 'letter_opener')
  5. # To render only the message body, without any metadata or extra containers or styling.
  6. # Default value is <tt>:default</tt> that renders styled message with showing useful metadata.
  7. #config.message_template = :default
  8. #If you want to change application that will be used to open your emails you
  9. #should override LAUNCHY_APPLICATION environment variable or set
  10. #Launchy.application.
  11. end