From 5b310d68daabb3c2b9a6aa91567d2c0dd7deaac2 Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Mon, 10 Jul 2023 12:08:13 +0200 Subject: [PATCH] Mail update --- include/mail.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mail.php b/include/mail.php index f8712c2..e7e745a 100644 --- a/include/mail.php +++ b/include/mail.php @@ -24,6 +24,7 @@ class Mail extends Mailhandling { $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'); + $this->content['body'] = $this->mail->textHtml; $this->content['subject'] = $this->mail->headers->subject; $this->renderAttachments($messageStructure); }