0

回复:Rails 的 ActionMailer 中的这段代码...

https://github.com/rails/rails/commit/b5f9a9fce316e96ffb9ab3a69e9311f8b1e56fde#actionmailer/lib/action_mailer/base.rb-P14

上面的链接包含一个关于 ActionMailer 产生的警告的代码注释:

DEPRECATION WARNING: charset() is deprecated and will be removed in future versions.

有什么已知的解决方案吗?

更新

你可能讨厌它,但为了继续我的一天,我只是把它放在我的邮件类中,直到我可以升级到 rails 3.2:

def charset
  @charset
end
4

1 回答 1

0

你确定这仍然是一个问题?Mail gem 中的 charset 方法没有任何关于弃用警告的信息。我想知道这是否适用于特定版本的邮件 gem,并且它已被更改。

https://github.com/mikel/mail/blob/master/lib/mail/message.rb#L1423

于 2012-04-30T22:37:55.867 回答