mein code funktioniert soweit nur wie schaff ich es jetzt das auch der body mit ausgegebn wird ?
PHP-Code:
<?php
$mailbox = imap_open("{pop3.sindorei.de:110/pop3/notls}INBOX","---","--"); // Bei IMAP einfach /pop3 weglassen
$mails = imap_fetch_overview ($mailbox,"1:*", FT_UID); // Holt eine Übersicht aller Emails
// Ausgabe in einer Tabelle:
echo '<table width="100%">
<tr>
<td>#</td>
<td>Von</td>
<td>Datum / Zeit</td>
<td>Betreff</td>
</tr>';
$size=count($mails); // Anzahl der Nachrichten
$cmsg = 0; // Zur Ausgabe einer fortlaufenden Nummer
for($i=$size-1;$i>=0;$i--){ // Schleife
$cmsg++;
$value = $mails[$i];
echo '<tr><td>'.$cmsg.'</td><td>'.$value->from.'</td><td>'.$value->subject.'</td><td>'.$value->date.'</td></tr>';
}
echo '</table>';
imap_close($mailbox);
?>
Kommentar