Skip to content

Commit

Permalink
Add the service description to the appointment email notifications (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alextselegidis committed Jul 3, 2023
1 parent 4d58075 commit 9828cd2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions application/views/emails/appointment_deleted_email.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,15 @@
</td>
</tr>

<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('description') ?>
</td>
<td style="padding: 3px;">
<?= e($service['description']) ?>
</td>
</tr>

<?php if ( ! empty($appointment['location'])): ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
Expand Down
9 changes: 9 additions & 0 deletions application/views/emails/appointment_saved_email.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,15 @@
</td>
</tr>

<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
<?= lang('description') ?>
</td>
<td style="padding: 3px;">
<?= e($service['description']) ?>
</td>
</tr>

<?php if ( ! empty($appointment['location'])): ?>
<tr>
<td class="label" style="padding: 3px;font-weight: bold;">
Expand Down

0 comments on commit 9828cd2

Please sign in to comment.