如何在电子邮件模板中使用应用程序帮助程序方法

时间:2014-02-11 13:32:52

标签: ruby-on-rails-4 actionmailer

我在ApplicationHelper

中定义了一个帮助器
module ApplicationHelper
  def url_for_portal
    URI("https://example.com/")
  end
end

并希望在邮件模板app/views/client_mailer/account_activation.md.erb中使用它,但获得undefined method 'url_for_portal'

Activate your Example.com account by clicking on the link below:
[<%= url_for_portal %>](<%= url_for_portal %>)

如何在邮件模板中编写和使用帮助方法?

1 个答案:

答案 0 :(得分:3)

helper :application添加到您的ClientMailer课程。