Skip to content

Commit

Permalink
fast fix
Browse files Browse the repository at this point in the history
  • Loading branch information
peni4142 committed Dec 12, 2023
1 parent f6ef858 commit d0786a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Finishers/SmtpFinisher.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private function confirmInput(): void
private function getNotificationMessage(): string
{
$formValues = $this->finisherContext->getFormValues();
return json_encode($this->getContentByUid($this->options["htmlNotificationBody"])) . "Jemand hat eine Anfrage gestellt:<br />" . $this->arrayToHtml($formValues);
return $this->options["htmlNotificationBody"] . "Jemand hat eine Anfrage gestellt:<br />" . $this->arrayToHtml($formValues);
}

private function arrayToHtml($array): string
Expand Down

0 comments on commit d0786a9

Please sign in to comment.