ActionMailer 3 错误 - 未定义方法“编码​​!”对于“欢迎”:字符串

发布于 2024-11-07 16:02:14 字数 460 浏览 3 评论 0原文

我在向 Rails 3 中的注册用户发送邮件时收到此错误:

未定义的方法“编码​​!”对于“Welcome”:String

我有以下代码

 @content = content
 mail(:to => content[:email], :subject => "test")

如果有主题,则显示上面的错误消息,如果我删除

@content = content
mail(:to => content[:email], :subject => "") no error message sending with out subject  

我正在使用的主题内容:

  • Rails版本3.0.1
  • 操作邮件程序3.0.1

I'm getting this error while sending mail to the registered user in rails 3:

undefined method 'encode!' for "Welcome":String

I have the following code

 @content = content
 mail(:to => content[:email], :subject => "test")

If there is a subject then above error message displaying, if I remove the subject content

@content = content
mail(:to => content[:email], :subject => "") no error message sending with out subject  

I'm using:

  • Rails version 3.0.1
  • action mailer 3.0.1

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

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

发布评论

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

评论(2

_畞蕅 2024-11-14 16:02:14

mail gem 检查编码的全局常量。如果它是由任何 gem 或您的代码定义的,那么它会调用编码!在邮件对象上。这是来自 UnstructedField 邮件 gem 类的调用:

def encode(value)
  value.encode!(charset) if defined?(Encoding) && charset
  (value.not_ascii_only? ? [value].pack("M").gsub("=\n", '') : value).gsub("\r", "=0D").gsub("\n", "=0A")
end

对我来说,它是邮件主题,一个字符串,所以我猴子修补了字符串:

class String
  def encode!(value)
   #Do any encoding or simply return it
   value
  end
end

mail gem checks for Encoded global constant. If its defined by any gem or your code then it calls encode! on the mail object. Here is this call from UnstructuredField mail gem class:

def encode(value)
  value.encode!(charset) if defined?(Encoding) && charset
  (value.not_ascii_only? ? [value].pack("M").gsub("=\n", '') : value).gsub("\r", "=0D").gsub("\n", "=0A")
end

For me it was mail subject, a String, so I monkey patched String:

class String
  def encode!(value)
   #Do any encoding or simply return it
   value
  end
end
橘亓 2024-11-14 16:02:14

尝试使用 ruby​​ 版本 1.9
我在使用带有 Rails 3.0.3 和 ruby​​ 1.8.7 的 devise 时遇到此错误。
我迁移到 ruby​​ 1.9,它非常有用。

Try using ruby version 1.9
I got this error while using devise with rails 3.0.3 and ruby 1.8.7.
I migrated to ruby 1.9 and it worked like a charm.

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