With the following ruby code, I can read a user's mail in an inbox via IMAP:
require 'net/imap'
imap = Net::IMAP.new('imap.gmail.com',993,true)
imap.login('user','passwd')
imap.select('INBOX')
mailIds = imap.search(['ALL'])
mailIds.each do |id|
msg = imap.fetch(id,'RFC822')[0].attr['RFC822']
puts msg
end
imap.logout()
imap.disconnect()
I want to know how I can archive and mark read emails. I want to move the emails out of the user's inbox.
Use store
method
require 'net/imap'
imap = Net::IMAP.new('imap.gmail.com', 993, true)
imap.login('user', 'passwd')
imap.select('INBOX')
mailIds = imap.search(['ALL'])
mailIds.each do |id|
msg = imap.fetch(id, 'RFC822')[0].attr['RFC822']
puts msg
imap.store(id, "+FLAGS", [:Seen])
end
imap.logout()
imap.disconnect()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With