如何使用ar_mailer_rails3?
抱歉我的英语不好,我是法国人。 我正在尝试为 prestashop 制作一个时事通讯解决方案,这是一个 ruby on Rails 解决方案。
要群发邮件,我想使用 ar_mailer_rails3 但是当我按照以下指示时 Ar_mailer_rails3 在 git hub 上,出现错误:
ruby/gems/1.8/gems/actionmailer-3.0.4/lib/action_mailer/tmail_compat.rb:1: Mail is not a module (TypeError)
有谁知道如何使用 ar_mailer_rails3 或者已经解决了这个问题?
谢谢您的回复
sorry for my bad english, I'm french.
I'm trying to make a newsletter solution for prestashop, a ruby on rails solution.
To mass mailing, I want to use ar_mailer_rails3 but when I follow instruction from
Ar_mailer_rails3 on git hub, there was an error :
ruby/gems/1.8/gems/actionmailer-3.0.4/lib/action_mailer/tmail_compat.rb:1: Mail is not a module (TypeError)
Does anyone know how to use ar_mailer_rails3 or has already solved this problem ?
Thank you for reply
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mail 是一个已经存在的类,您的模型名称与之冲突
您应该重命名您的 ar_mailer_rails 模型,可能默认的“Email”就可以,或者在示例中使用“Notifier”
Mail is an already exists class, your model name conflicts it
you should rename your ar_mailer_rails model, may be the default "Email" is OK, or use "Notifier" in the example