Rails 2 到 Rails 3 的转换

发布于 2024-10-20 08:04:52 字数 437 浏览 3 评论 0原文

class ForumMailer < ActionMailer::Base

  def new_post(user,post)  
    @subject        = "New post on #{post.topic.title} from #{SITE_NAME}"  
    @recipients     = user.profile.email  
    @body['user']   = user   
    @body['post']   = post  
    @from           = MAILER_FROM_ADDRESS  
    @sent_on        = Time.new  
    @content_type = "text/html"  

  end
end

请帮我将此 Rails 2.xx 代码转换为 Rails 3.xx

class ForumMailer < ActionMailer::Base

  def new_post(user,post)  
    @subject        = "New post on #{post.topic.title} from #{SITE_NAME}"  
    @recipients     = user.profile.email  
    @body['user']   = user   
    @body['post']   = post  
    @from           = MAILER_FROM_ADDRESS  
    @sent_on        = Time.new  
    @content_type = "text/html"  

  end
end

Please help me to convert this Rails 2.xx code to Rails 3.x.x

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文