From: Craig Date: 2008-06-01T03:24:40+09:00 Subject: Re: How can I get the subject of mail On May 31, 1:46 am, Jmlover wrote: > @pop = Net::POP3.new('pop.163.com') > @pop.start(@username, @password) > > @pop.each_mail do |m| > # How can I get the subject of m? > # 〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜 > # By m.pop? > end > > @pop.finish > > By the way, can I only get the mail header? How? > > Thank you! Here is one way. puts m.pop.scan(/Subject:(.+)$/) Cheers, Craig