Mail update

This commit is contained in:
Torsten Schulz
2023-07-10 12:08:34 +02:00
parent 5b310d68da
commit ba5eb88365

View File

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