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