WIP - New imap class

This commit is contained in:
Torsten Schulz
2023-10-16 15:41:05 +02:00
parent 54d30dd3c3
commit 6a9717e0db
165 changed files with 7347 additions and 10527 deletions

View File

@@ -21,6 +21,8 @@ class Mail extends Mailhandling {
protected function generateContent(): void {
$this->mail = $this->fetchEmail();
$textHtml = $this->mail->textHtml;
$textPlain = $this->mail->textPlain;
$this->content['sender'] = $this->mail->headers->senderaddress;
$this->content['receiver'] = $this->mail->headers->toaddress;
$this->content['senddate'] = (new DateTime($this->mail->date))->format('d.m.Y');