Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用Mandrill作为入站电子邮件路由,我使用这些 gem 来接收电子邮件并将其保存在数据库中。
Attachments如何使用回形针将附件保存在单独的数据库表“ ”中。
Attachments
Griddler::Email有一个attachments属性,即:
Griddler::Email
attachments
包含任何附件的 File 对象数组。
所以,如果你有这样的模型:
class Assessment has_attached_file :file end
您只需这样做,例如:
@email.attachments.each{|f| Attachment.create(file: f)}