Reputation: 57966
Is it possible to get all of my emails from your GMail inbox rather than only unread email? My current PHP script only gets unread email but I want the whole inbox.
I am making use of PHP and CURL. Firstly, is it possible to do this?
If so, can someone give me some hints on how to achieve this?
Upvotes: 1
Views: 1297
Reputation: 568
you might also check out ryan grove's larch project:
http://wonko.com/post/larch-syncs-messages-from-one-imap-server-to-another
it's made to sync imap accounts, but will give you an idea of how to use imap with ruby. (similar in other languages.)
Upvotes: 0
Reputation: 199324
Use an IMAP API.
See: Fetching attachments from gmail via either python or php
Upvotes: 3