Files
server/usr/share/psa-horde/imp/templates/basic/message/message.html.php
2026-01-07 20:52:11 +01:00

20 lines
474 B
PHP

<div id="msgheaders">
<p><?php echo $this->escape($this->label) ?></p>
<table>
<?php foreach ($this->headers as $v): ?>
<tr<?php if (!empty($v['class'])): ?> class="<?php echo $v['class'] ?>"<?php endif; ?>>
<td class="rightAlign nowrap">
<?php echo $v['name'] ?>
</td>
<td class="msgheader">
<?php echo $v['val'] ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>
<div id="messageBody" class="messageBody">
<?php echo $this->msgtext ?>
</div>