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

8 lines
No EOL
191 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));