Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am accessing Gmail messages via IMAP using PHP. I'd like to know what label(s) each message is tagged with. Apparently Google has an IMAP extension that will do exactly what I need:

https://developers.google.com/google-apps/gmail/imap_extensions#access_to_gmail_labels_x-gm-labels

However, I'm not sure how to use this extension via PHP. There are PHP IMAP functions for fetch_header, etc., but I don't see a raw "fetch" that would let me grab this extension information. Any advice?

share|improve this question
you just get the folder name – Dagon Feb 21 at 2:58
Right but Gmail allows you to "tag" messages with multiple labels (folders). I'd like a list of every label associated with a particular message. I could grab each message from each folder of interest but that's a little cumbersome as I'd be getting some messages more than once (I think) and would then have to merge them somehow. I think the extension will give me what I need, I'm just not sure how to access it via PHP. – aaknitt Feb 21 at 3:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.