Initial support for ticket status changes and emailing client ticket updates

This commit is contained in:
johnnyq
2021-08-20 23:37:27 -04:00
parent 5c46e57a21
commit 34093b50f9
3 changed files with 58 additions and 4 deletions

View File

@@ -59,8 +59,18 @@
</div>
</div>
<?php if(!empty($config_smtp_host) AND !empty($client_email)){ ?>
<div class="form-group">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customControlAutosizing" name="email_ticket_updates" value="1" checked>
<label class="custom-control-label" for="customControlAutosizing">Email ticket updates <span class="text-secondary"><?php echo $client_email; ?></span></label>
</div>
</div>
<?php } ?>
<div class="form-group">
<label>Details <strong class="text-danger">*</strong></label>
<textarea class="form-control summernote" rows="8" name="details" required><?php echo $ticket_details; ?></textarea>
</div>