Closed GoogleCodeExporter closed 9 years ago
Hi! Thanks for report :) But I don't understand how php-imap corresponds to
CSS?
Original comment by barbushin
on 24 Oct 2012 at 2:33
Hi!
Actually i wanted to put in form a administration system where u can get your
mails from a box... I manage to get my emails with your code however i'd love
to stylish this just like google do with a table with the sender, the subject
and the date and time, and when u click on it u access to your mail.
Actually as i'm new in php i don't know how i can transform ur code to make
this!
Do i have to transform arrays in echo or something like that ??
Thank you for your amazing code !!
Original comment by m.heilik...@gmail.com
on 24 Oct 2012 at 2:42
Try
echo '<table><tr><td>from</td><td>subject</td></tr>';
foreach($mails as $mail) {
echo '<tr><td>'.$mail->fromAddress.'</td><td>'.$mail->subject.'</td></tr>';
}
echo '</table>';
Original comment by barbushin
on 25 Oct 2012 at 5:32
Original issue reported on code.google.com by
m.heilik...@gmail.com
on 24 Oct 2012 at 8:37