1

我使用Mandrill作为入站电子邮件路由,我使用这些 gem 来接收电子邮件并将其保存在数据库中。

Attachments如何使用回形针将附件保存在单独的数据库表“ ”中。

4

1 回答 1

1

Griddler::Email有一个attachments属性,即:

包含任何附件的 File 对象数组。

所以,如果你有这样的模型:

class Assessment
  has_attached_file :file
end

您只需这样做,例如:

@email.attachments.each{|f| Attachment.create(file: f)}
于 2015-04-07T04:42:39.617 回答