2010-04-14 13:20:40 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author markus
|
|
|
|
* $Id: index.phtml 25 2009-12-02 15:43:21Z markus $
|
|
|
|
*/
|
2010-04-14 14:29:09 +00:00
|
|
|
$this->headLink()->appendStylesheet('/css/mail.css');
|
2010-04-14 13:20:40 +00:00
|
|
|
?>
|
|
|
|
<H1><?php print I18n::_('Mail'); ?></H1>
|
2010-04-14 14:29:09 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th><?php print I18n::_('From');?></th>
|
|
|
|
<th><?php print I18n::_('To');?></th>
|
|
|
|
<th><?php print I18n::_('Subject');?></th>
|
|
|
|
<th><?php print I18n::_('Date');?></th>
|
|
|
|
<th><?php print I18n::_('Size');?></th>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
foreach ($this->headers as $header) {
|
|
|
|
print " <tr>\n";
|
|
|
|
print " <td><a href=\"" . $header->detailslink . "\">" . $header->fromaddress . "</a></td>";
|
|
|
|
print " <td>" . $header->toaddress . "</td>";
|
|
|
|
print " <td>" . $header->subject . "</td>";
|
|
|
|
print " <td>" . $header->date . "</td>";
|
|
|
|
print " <td>" . $header->Size . "</td>";
|
|
|
|
print " </tr>\n";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table>
|