I'm trying to pull a public AWS file and use it as an attachment, like so:

attachments['file.zip'] = open('https://s3.amazonaws.com/file.zip')

I'm getting a No such file or directory

I've changed the paths above to be generic, but I can indeed navigate to the AWS path and get a file. Is there a way to make it an attachement for use by ActionMailer?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
attachments['file.zip'] = open('https://s3.amazonaws.com/file.zip').read

open returns an IO object, not the content of the file. You must give the file content to attachments.

link|improve this answer
still getting the error. – JustinM Jul 12 '11 at 22:31
1  
Oh, I skipped the error message. You may need to require 'open-uri' – Michaël Witrant Jul 12 '11 at 22:33
Yeah, that was it. Thanks! – JustinM Jul 12 '11 at 22:36
feedback

Your Answer

 
or
required, but never shown

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