Get Gmail tags via PHP IMAP?

I am accessing Gmail messages via IMAP using PHP. I would like to know which tags (tags) are marked in each post. Obviously, 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 through PHP. There are PHP IMAP functions for fetch_header, etc., but I donโ€™t see a raw "selection" that would allow me to get this extension information. Any tips?

+6
source share
1 answer

Try this one

define('EMAIL_HOSTNAME', '{imap.gmail.com:993/imap/ssl}INBOX'); define('EMAIL_USERNAME', ' yourid@gmail.com '); define('EMAIL_PASSWORD', 'password'); $inbox = imap_open(EMAIL_HOSTNAME,EMAIL_USERNAME,EMAIL_PASSWORD) or die('Cannot connect to Gmail: ' . imap_last_error()); $emails = imap_search($inbox,'ALL'); if($emails) { rsort($emails); foreach($emails as $email_number) { $overview = imap_fetch_overview($inbox,$email_number,0); $message = imap_fetchbody($inbox,$email_number,2); $output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">'; $output.= '<span class="subject">'.$overview[0]->subject.'</span> '; $output.= '<span class="from">'.$overview[0]->from.'</span>'; $output.= '<span class="date">on '.$overview[0]->date.'</span>'; $output.= '</div>'; $output.= '<div class="body">'.$message.'</div>'; } } imap_close($inbox); 
0
source

All Articles