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); }