mirror of https://github.com/itflow-org/itflow
UI tidy work on header for Viewing Message in Queue
This commit is contained in:
parent
b6ffa0595d
commit
5f7b297cf1
|
|
@ -41,15 +41,30 @@ if ($email_status == 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build the dynamic modal title
|
// Build the dynamic modal title
|
||||||
$title = "<i class='fas fa-envelope-open mr-2'></i><strong>$email_subject</strong>";
|
$title = "<i class='fas fa-fw fa-envelope-open mr-2'></i><strong>$email_subject</strong>";
|
||||||
|
|
||||||
// Generate the HTML form content using output buffering.
|
// Generate the HTML form content using output buffering.
|
||||||
ob_start();
|
ob_start();
|
||||||
?>
|
?>
|
||||||
<div class="modal-body bg-white">
|
<div class="modal-body bg-white">
|
||||||
<div>From: <?php echo "$email_from_name <small>($email_from)</small>"; ?></div>
|
<div class="row">
|
||||||
<div>To: <?php echo "$email_recipient_name <small>($email_recipient)</small>"; ?></div>
|
<div class="col-md-1">
|
||||||
<hr>
|
<span class="text-secondary">From:</span>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<?php echo "<strong>$email_from_name</strong> ($email_from)"; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr class="my-2">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-1">
|
||||||
|
<span class="text-secondary">To:</span>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-10">
|
||||||
|
<?php echo "<strong>$email_recipient_name</strong> ($email_recipient)"; ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr class="my-2">
|
||||||
<div class="prettyContent">
|
<div class="prettyContent">
|
||||||
<?php echo $email_content; ?>
|
<?php echo $email_content; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue