如何读取imap打开的文件夹?

时间:2015-02-23 10:23:04

标签: php imap

我必须按文件夹显示电子邮件。我试过了:

$this->conn = imap_open('{'.$this->server.':'.$this->string.'}'.$folder, $this->username, $this->password);

如果$folderINBOX"",则可以,但是当我尝试列出的文件夹名称时,例如Drafts,imap会返回"Mailbox does not exist, or must be subscribed to.".

我错了什么?

1 个答案:

答案 0 :(得分:0)

好的,感谢Max的评论!

常规电子邮件:imap_open('{'.$this->server.':'.$this->string.'}INBOX.'.$f, $this->username, $this->password);

Gmail:imap_open('{'.$this->server.':'.$this->string.'}'.$f, $this->username, $this->password);

使用全名:[Gmail]/Trash