Giter VIP home page Giter VIP logo

Comments (9)

novito avatar novito commented on May 16, 2024

I am having the same problem under ruby 1.9.3

from ruby-gmail.

myobie avatar myobie commented on May 16, 2024

Can you post a code example? And can you upgrade and try the newest gem version?

from ruby-gmail.

refriedchicken avatar refriedchicken commented on May 16, 2024

I am also having this issue on Ruby 1.9.3 using 0.3.0.

folder = "/home/refriedchicken/downloads"
Gmail.new('username','password') do |g|
g.inbox.emails(:unread, :from => "[email protected]").each do |e|
if !e.message.attachments.empty?
e.message.save_attachments_to(folder)
e.mark(:read)
e.archive!
end
end
end

NoMethodError: undefined method message' for #<Mail::Message:0x0000000273f800> from /home/refriedchicken/.rvm/gems/ruby-1.9.3-p374/gems/mail-2.5.3/lib/mail/message.rb:1289:inmethod_missing'
from /home/refriedchicken/.rvm/gems/ruby-1.9.3-p374/gems/ruby-gmail-0.3.0/lib/gmail/message.rb:101:in method_missing' from (irb):30:inblock (2 levels) in irb_binding'
from (irb):29:in each' from (irb):29:inblock in irb_binding'
from /home/refriedchicken/.rvm/gems/ruby-1.9.3-p374/gems/ruby-gmail-0.3.0/lib/gmail.rb:24:in initialize' from (irb):28:innew'
from (irb):28
from /home/refriedchicken/.rvm/rubies/ruby-1.9.3-p374/bin/irb:13:in `

'

from ruby-gmail.

marcusfloriano avatar marcusfloriano commented on May 16, 2024

Hi,

I solved with code below. The ruby version is ruby 1.9.2p290 (2011-07-09 revision 32553) [x86_64-darwin11.2.0]

File.open(File.join("imgs", file.filename), "w+b", 0644 ) { |f| f.write file.body.decoded }

Thank's

from ruby-gmail.

 avatar commented on May 16, 2024

I am too face the same problem. I have using ruby 2.0.0-p247 and ruby-gmail-0.3.0.
Any work around?

from ruby-gmail.

rcho avatar rcho commented on May 16, 2024

I got the same problem, it appears the save_attachments_to method doesnt exist or has been deprecated by the mail gem. I was able to handle my attachments like so

message.attachments.each do |attachment|
File.open("/home/rcho/Downloads/#{attachment.filename}", "w+b", 0644) { |f| f.write attachment.body.decoded }
end

source: https://github.com/mikel/mail#testing-and-extracting-attachments

from ruby-gmail.

curpeng avatar curpeng commented on May 16, 2024

Seems that in version 0.3.0 author made method 'message' private. At master I see that this method is public, so I assume that it was done mistakenly. For fast fixing this we can use send:
g.inbox.emails(:unread, :from => "[email protected]").each do |e|
e.send(:message).save_attachments_to(folder)
end

from ruby-gmail.

Dreyfuzz avatar Dreyfuzz commented on May 16, 2024

@rcho's method doesn't work for me, which makes sense since it's still relying on the message method. I had no better results using emails.send(:message).save_attachments_to(folder). I get undefined method `save_attachments_to' for #Mail::Message:0x00000101469608

from ruby-gmail.

myobie avatar myobie commented on May 16, 2024

@Dreyfuzz @dolgishev I've merged a PR that updated the README. Can you try to save the attachments manually?

The #save_attachments_to method was very out of date and the new example should work.

from ruby-gmail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.