3
我需要能夠禁用特定電子郵件的特定佈局。我看了一下Rails for ActionMailer - How to disable a Layout for a certain mailer但是我不知道在哪裏以及如何輸出必要的代碼。我是Ruby的新手,並且已經搜索了API文檔,找不到我需要的確切代碼行。如何禁用特定郵件的佈局?
我需要能夠禁用特定電子郵件的特定佈局。我看了一下Rails for ActionMailer - How to disable a Layout for a certain mailer但是我不知道在哪裏以及如何輸出必要的代碼。我是Ruby的新手,並且已經搜索了API文檔,找不到我需要的確切代碼行。如何禁用特定郵件的佈局?
class YourMailer
layout false, only: [:mail_method1, :mail_method2]
def mail_method1
#your code
end
你可以粗略和簡單的做到這些郵件()調用之前:
@_action_has_layout = false
不要我把冒號之前或之後才?因爲其他參數(正在工作),這就是它所顯示的。 默認:from =>「[email protected]」 幫手:應用程序 – MichaelScaria
'只:['與':only =相同'[',只是1.9.2 ruby語法 – apneadiving
啊謝謝,這個工作! – MichaelScaria