0

我正在尝试将应用程序从 rails 2.3 升级到 3.0.6

在rails 2.3中有以下代码

class MessageSender < ActionMailer::Base
    def send_message(subject,to,from,body,respondent = nil, content_type = 'text/plain')
      @content_type        = content_type
      @subject             = subject
      @recipients          = to
      @from                = from
     # @sent_on             = Time.now
      @body                = {:body_text => body}
    end
end

在升级过程中代码修改如下

class MessageSender < ActionMailer::Base
    def send_message(subjet,to,from,body,respondent = nil,content_type='text/plain')
      mail(:to => to, :subject => subject, :from => from, :body => body, :content_type => content_type)
    end
end

通过参考这个关于在 rails 3.0 中使用 ActionMailer 的著名博客

最后运行rake rails:upgrade:check(检查 rails 3 不兼容的功能),它显示

Old ActionMailer class API
You're using the old API in a mailer class.
More information: http://lindsaar.net/2010/1/26/new-actionmailer-api

The culprits: 
        - app/models/message_sender.rb

(即)它说我仍在使用旧 API

有人可以解释我在这里缺少什么吗?

或者有没有其他方法可以消除“您在邮件类中使用旧 API”错误?

仅供参考:宝石已更新,环境为 ruby​​ 1.8.7,rails 3.0.6

4

2 回答 2

1

尝试丢弃您的代码并使用ActionMailer guide重新编写它。原因可能正如 Frederick 所建议的那样,但您的代码看起来也不是很轨道 3 方式;)。

我首先想到的是你如何传递正文和内容类型。正文可以只是您将在视图中使用的变量,内容类型将根据定义的视图自动设置。

我会写这样的东西:

class MessageSender < ActionMailer::Base
  def send_message(subject, to, from, body)
    # @sent_on           = Time.now
    @body                = body
    mail(:to => to, :subject => subject, :from => from)
  end
end

然后渲染一个视图:

# app/views/message_sender/send_message.text.erb 

My nice text email.
And my body is <%= @body %>

正如您在指南中所读到的,您还可以将 html 版本创建为app/views/message_sender/send_message.text.erb.

于 2013-05-01T09:07:50.310 回答
0

Rails 升级通过运行一些正则表达式来检查你的代码。这不是万无一失的,例如它试图防止设置主题的旧式方式:

subject "foo"

但是用于检查的测试将捕获单词 subject 后跟空格的任何实例(用作符号时除外)。由于您有一个参数调用subject,这很容易发生。也是如此from

于 2013-05-01T07:55:36.093 回答