ActionMailer 3 错误 - 未定义方法“编码!”对于“欢迎”:字符串
我在向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
mail gem 检查编码的全局常量。如果它是由任何 gem 或您的代码定义的,那么它会调用编码!在邮件对象上。这是来自 UnstructedField 邮件 gem 类的调用:
对我来说,它是邮件主题,一个字符串,所以我猴子修补了字符串:
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:
For me it was mail subject, a String, so I monkey patched String:
尝试使用 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.