From 6036b652ad049b4b82aef93dbb33ce843c3ea040 Mon Sep 17 00:00:00 2001 From: Torsten Schulz Date: Mon, 10 Jul 2023 13:05:54 +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 d4b0c80..fa84fe4 100644 --- a/include/mail.php +++ b/include/mail.php @@ -25,7 +25,7 @@ class Mail extends Mailhandling { $this->content['receiver'] = $this->mail->headers->toaddress; $this->content['senddate'] = (new DateTime($this->mail->date))->format('d.m.Y'); $this->content['emailbody'] = $this->mail->textHtml ?? $this->mail->textPlain; - $this->content['subject'] = $this->mail->headers->subject; + $this->content['subject'] = $this->mail->subject; $this->renderAttachments($messageStructure); }