From: testautomated6@... Date: 2008-02-15T01:10:06+09:00 Subject: Re: extract the message body with gmailer Hi, The problem I am having is that the msg body is no consistently returned def check_purchase_email @g = nil @msg = nil GMailer.connect(:username=>'x@x.com',:password=>'xxxxxxxx') do |@g| @g.messages(:label=>'inbox', :read=>false).each_msg {|@msg| puts "subject: " + @msg.subject puts "from: " + @msg.sender puts @msg.body } end @g.disconnect end Cheers Aidy