我需要获取发送到电子邮件的附件的内容类型...我从本地驱动器附加它..如何获取该内容类型以将其保存在数据库中...在邮件文件中,我尝试如下。但它没有用。请帮忙。
files.each do |file|
attachment "application/octet-stream" do |a|
a.body = file.read
a.filename = file.original_filename
a.content_type = `file --raw --brief "#{file}"`.chomp
puts "The content type of the file is...",a.content_type
end
上面将错误显示为“缺少子类型:”错误:无法打开 `56.png'(没有这样的文件或目录)“”