我必须按文件夹显示电子邮件。我试过了:
$this->conn = imap_open('{'.$this->server.':'.$this->string.'}'.$folder, $this->username, $this->password);
如果$folder
为INBOX
或""
,则可以,但是当我尝试列出的文件夹名称时,例如Drafts
,imap会返回"Mailbox does not exist, or must be subscribed to.".
我错了什么?
答案 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