Skip to content

Commit

Permalink
fix no show email bug
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvanspauwen committed Nov 13, 2023
1 parent 231eba4 commit 89ccc45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/ShopBundle/Controller/Admin/ReservationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ private function getNoShowConfig()
public function sendNoShowEmail(Person $person, int $warningCount) {
$noShowConfig = $this->getNoShowConfig();

$mailSubject = $noShowConfig->getEmailContent($person, $warningCount);
$mailContent = $noShowConfig->getEmailSubject($warningCount);
$mailContent = $noShowConfig->getEmailContent($person, $warningCount);
$mailSubject = $noShowConfig->getEmailSubject($warningCount);

// sender address
$noreplyAddress = $this->getEntityManager()
Expand Down

0 comments on commit 89ccc45

Please sign in to comment.