错误讯息:
ActionView::MissingTemplate:
Missing template gem_name/exception_mailer/exception_report with "mailer".
Searched in:
* "gem_name/exception_mailer"
这是我的文件夹结构:
lib/
gem_name/
exception_mailer.rb # extends ActionMailer::Base
exception_mailer/
exception_report.html.erb
gem_name.rb
我想不出为什么找不到我的模板。
答案 0 :(得分:0)
好的,所以我需要修改视图路径数组。
ActionMailer::Base.view_paths = ...
或
prepend_view_path('path')
链接: