GMAIL sent folder not accessible using IMAP

imap, php

Solution

I believe the 'Sent' folder is actually `[Gmail]/Sent Mail`

Problem

I am trying to fetch Gmail sent items using Imap but it gives me error saying "Notice: Unknown: [NONEXISTENT] Unknown Mailbox: Sent (Failure) (errflg=2) in Unknown on line 0" ``` $hostname = '{imap.gmail.com:993/imap/ssl}Sent'; $username = 'anrc.wipro@gmail.com'; $password = '****************'; /* try to connect */ $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error()); ```

Original source