Fix Timezone always being UTC when sent to the mail queue when scheduling / cancelling tickets

This commit is contained in:
johnnyq
2024-04-17 16:47:10 -04:00
parent 7a2e063bde
commit 894a4369b3
3 changed files with 25 additions and 9 deletions

View File

@@ -37,6 +37,12 @@ echo "<H1>$start_date</H1>";
<?php echo randomString(100); ?>
<br>
<?php
// show the current Date and Time
$date_time = date('Y-m-d H:i:s');
echo "Current Date and Time: <strong>$date_time</strong>";
?>
<script>toastr.success('Have Fun Wozz!!')</script>
<?php require_once "footer.php";