Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send multiple attachments but not declaring them just octet-stream doing it right now like this

newsletter.attachments.each do |file|
  contend = File.new(file.path+"/"+file.filename, "r")
    attachment "application/octet-stream" do |a|
      a.body = contend.read
      a.filename = file.filename
end unless file.blank?

since not all clients can handel that, so is there a rails plugin that selects the mime-type based on file extension, or even content?

googled alot, couldn't find what i was searching for

or am I doing this completeley wrong?

share|improve this question
ended up setting an hash with the most used types and selecting based on extension, an octet-stream for the rest – Jakob Cosoroaba Sep 24 '09 at 9:33

1 Answer

up vote 2 down vote accepted

Use the mime-types gem: gem install mime-types

Should be used like:

attachment MIME::Types.type_for(cv.original_filename).to_s do |a|
  a.body = cv.read
  a.filename = cv.original_filename
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.