Próbuje pobrać maile za pomocą (do połączenia używam protokołu IMAP):
<?php $mbox = imap_open(....); $emails = imap_search($mbox, "NEW"); foreach($mails as $email) { $uid = imap_uid($mbox, $email, FT_UID); $struct = imap_fetchstructure($mbox, $uid, FT_UID); [...] } ?>
Jednak natrafiam na maila dla, którego mam błąd:
imap_fetchstructure(): No body information available
Co jest nie tak? Serwer IMAP? Klient IMAP? Kod?