Skip to content

Commit

Permalink
replace $client variable with $client_full_name
Browse files Browse the repository at this point in the history
  • Loading branch information
creme332 committed May 19, 2024
1 parent 22db6d5 commit 87670b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/mails/OrderConfirmation.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* @var Order $order order order
* @var Store $store Store
* @var Client $client First name of person who placed the order
* @var string $client_full_name Full name of person who placed the order
*
* Ref: https://github.com/leemunroe/responsive-html-email-template
*/
Expand All @@ -33,7 +33,7 @@
<body>
<h1>Order Confirmation</h1>

<p>Dear <?= htmlspecialchars(ucfirst($client->getFirstName()) . " " . ucfirst($client->getLastName())) ?>,</p>
<p>Dear <?= htmlspecialchars($client_full_name) ?>,</p>

<p>Thank you for your purchase at Steamy Sips! We've received your order successfully. You can find your purchase
information
Expand Down

0 comments on commit 87670b4

Please sign in to comment.