maillist.php 652 B

123456789101112131415161718192021
  1. <table id="mail-list" class="table table-striped">
  2. <thead>
  3. <tr>
  4. <th>Absender</th>
  5. <th>Empfänger</th>
  6. <th>Betreff</th>
  7. <th><a id="refresh-mails" href="#"><i class="fa fa-refresh"></i></a></th>
  8. </tr>
  9. </thead>
  10. <?php
  11. foreach($this->_['mails'] as $mail) {
  12. echo '<tr>';
  13. echo '<td>' . $mail->getMailSender() . '</td>';
  14. echo '<td>' . $mail->getMailRecipient() . '</td>';
  15. echo '<td>' . $mail->getSubject() . '</td>';
  16. echo '<td><a href="#" data-mail-id="' . $mail->getID() . '" class="reply-mail"><i class="fa fa-reply"></i></a></td>';
  17. echo '</tr>';
  18. }
  19. ?>
  20. </table>