我使用IMAP功能获取Google电子邮件。在开发文件夹中一切正常。问题是getMessages函数从gmail帐户返回前50封邮件。它使用RFC822。我不知道RFC。
我需要帮助,有人可以协助如何获取最新的(最新的)50封电子邮件,而不是前50封电子邮件。
getMessages函数的代码如下:
public function getMessages($from, $to) {
$this->writeCommannd("A" . $this->codeCounter, "FETCH $from:$to RFC822");
$response = $this->readResponse("A" . $this->codeCounter);
return $this->modifyResponse($response);
}
并调用上述功能如下: $ IMAP - >的getMessages(1,50);
请帮帮我。提前谢谢。