You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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...
The text was updated successfully, but these errors were encountered:
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...
The text was updated successfully, but these errors were encountered: