Happy New Year
[squirrelmail.git] / templates / default / read_message_body.tpl
... / ...
CommitLineData
1<?php
2/**
3 * read_message_body.tpl
4 *
5 * Template for displaying the message body.
6 *
7 * The following variables are available in this template:
8 * $message_body - Entire message body, scrubbed, formatted, etc.
9 *
10 * @copyright 1999-2020 The SquirrelMail Project Team
11 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
12 * @version $Id$
13 * @package squirrelmail
14 * @subpackage templates
15 */
16
17/** add required includes **/
18
19/** extract template variables **/
20extract($t);
21
22/** Begin template **/
23if (!empty($plugin_output['read_body_top'])) echo $plugin_output['read_body_top'];
24?>
25<div class="readBody">
26<table cellspacing="0" class="table2">
27 <tr>
28 <td>
29 <?php echo $message_body; ?>
30 </td>
31 </tr>
32</table>
33<table cellspacing="0" class="spacer">
34 <tr>
35 <td>
36 </td>
37 </tr>
38</table>
39</div>