Here is a strange one for you.
I am using the Ipipi SMS
to email service to send control commands to a PHP
script.
I can send email messages to my mailbox, then read and display them using PHP-IMAP
commands as in this code segment:
$overview = imap_fetch_overview($inbox,$email_number,0);
$message = imap_fetchbody($inbox,$email_number,2);
echo $message;
If I send a sms message to the mailbox imap_fetchbody
, it returns empty.
However, if I then read the mailbox with a email client the message is there. I do not think it is an Ipipi
issue.
If I do a var_dump($message)
I get string(0) ""
.