From fed42d0a7dc1a0288a389157fc4492917444c82e Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Mon, 10 Jul 2023 11:37:51 +0200 Subject: [PATCH] Mail update --- include/mailhandling.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/mailhandling.php b/include/mailhandling.php index a1fce2f..44d3612 100644 --- a/include/mailhandling.php +++ b/include/mailhandling.php @@ -13,7 +13,8 @@ class Mailhandling extends Renderer { protected function fetchEmail(): PhpImap\IncomingMail { $mailsIds = $this->mbox->searchMailbox('ALL'); - $mail = $this->mbox->getMail($mailsIds[0]); //$this->uid, false); + $mail = $this->mbox->getMail($mailsIds[0]); + var_dump($mail); return $mail; }