Rails 4, Mailer preview, preview attached images

前端 未结 3 654
南笙
南笙 2021-02-15 15:39

I have problem with rails 4.1.6 mailer preview.

I want to see attached images in preview mode, but it doesn\'t work. I think it\'s incorrect

There is my code:

3条回答
  •  遥遥无期
    2021-02-15 16:18

    For Rails >= 4.2 to preview images you should create initializer:

    # config/initializer/preview_interceptors.rb
    ActionMailer::Base.register_preview_interceptor(ActionMailer::InlinePreviewInterceptor)
    

提交回复
热议问题