page: http://eden.openovate.com/documentation/mailing/imap
Next let's set the INBOX as the active mailbox. Figure 3 shows how we would set and retrieve the active mailbox in one line.
Figure 3. Set Active Mailbox FIRST!
echo $imap->setMailboxes('INBOX')->getActiveInbox(); //--> INBOX
^^ this errors out, as method doesn't exist..
Instead it should read:
echo $imap->setActiveMailbox("INBOX")->getActiveMailbox() -- both of the methods were named wrong...
page: http://eden.openovate.com/documentation/mailing/imap
Next let's set the INBOX as the active mailbox. Figure 3 shows how we would set and retrieve the active mailbox in one line.
Figure 3. Set Active Mailbox FIRST!
echo $imap->setMailboxes('INBOX')->getActiveInbox(); //--> INBOX
^^ this errors out, as method doesn't exist..
Instead it should read:
echo $imap->setActiveMailbox("INBOX")->getActiveMailbox() -- both of the methods were named wrong...