1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/z-push_ynh.git synced 2024-09-03 18:05:58 +02:00
z-push_ynh/sources/testing/testing-imap.php
2014-12-18 18:08:26 +01:00

10 lines
196 B
PHP

<?php
$mbox = null;
$id = null;
$mail = @imap_fetchheader($mbox, $id, FT_UID) . @imap_body($mbox, $id, FT_PEEK | FT_UID);
printf("MAIL <%s>\n", $mail);
printf("EMPTY <%b>\n", empty($mail));
?>