| 123456789101112131415161718192021 |
- <table id="mail-list" class="table table-striped">
- <thead>
- <tr>
- <th>Absender</th>
- <th>Empfänger</th>
- <th>Betreff</th>
- <th><a id="refresh-mails" href="#"><i class="fa fa-refresh"></i></a></th>
- </tr>
- </thead>
- <?php
- foreach($this->_['mails'] as $mail) {
- echo '<tr>';
- echo '<td>' . $mail->getMailSender() . '</td>';
- echo '<td>' . $mail->getMailRecipient() . '</td>';
- echo '<td>' . $mail->getSubject() . '</td>';
- echo '<td></td>';
- echo '</tr>';
- }
- ?>
- </table>
|