我有一个模型用户,它有多个引用的“个人资料”。用户可以拥有其中的几个配置文件,每个配置文件都应该在电子邮件中引入特定的布局。我们考虑一下个人资料Admin
和Worker
例如,在我的Devise确认控制器中,我需要不同的布局,具体取决于用户的配置文件。例如,如果用户有
因此我无法为Mailer / Controller设置布局,但我需要在控制器操作中设置它。假设我有一个帮助程序layout_for_user(),它可以返回给定用户的布局名称。我该如何使用它?例如使用Devise邮件程序?
class MyDeviseMailer < Devise::Mailer
def confirmation_instructions(record, token, options={})
# whange layout based on `layout_for_user(record)`
@token = token
devise_mail(record, :confirmation_instructions, opts)
end
end
答案 0 :(得分:2)
我必须覆盖devise_mail
方法
def confirmation_instructions
...
@layout = find_layout_for_user(user)
devise_mail(user, :confirmation_instructions, opts)
end
# Override to include custom layouts
def devise_mail(record, action, opts={})
initialize_from_record(record)
mail(headers_for(action, opts)) do |format|
format.html { render layout: @layout }
end
end