I am in the process of writing a script that will process incoming emails and save the content to a database. I am using a few PEAR methods to process the incoming messages and parse out the from, to, subj, and body of the email. It seems to be working in most cases but there is something about emails sent from Microsoft Entourage (mail client for Mac) that breaks the extraction of the body of the email. The strange thing is that emails sent from my school account using Entourage get everything processed perfectly, emails sent from my gmail account using gmail's web client get everything processed perfectly, however emails sent from my gmail account using Entourage only parse out the from, to, and subj accurately. The body of the email gets lost...
edit: turns out the problem exists with Gmail mails from the iPhone mail client as well. is this a MIME vs. non-MIME problem?
Please check out my code and share anything you might know.
Thanks!
#!/usr/local/bin/php -q
<?php
//the following includes needed full path included b/c of local install of PEAR
INCLUDE('pear/share/pear/Mail.php');
INCLUDE('pear/share/pear/Mail/mime.php');
REQUIRE_ONCE('pear/share/pear/Mail/mimeDecode.php');
$fd = FOPEN("php://stdin", "r");
$email = "";
WHILE (!FEOF($fd)) {
$email .= FREAD($fd, 1024);
}
FCLOSE($fd);
$params['include_bodies'] = TRUE;
$params['decode_bodies'] = TRUE;
$params['decode_headers'] = TRUE;
$message=NEW Mail_mimeDecode($email);
$mailObj=$message->decode($params);
// Who is it from
$from=$mailObj->headers['from'];
//who is it to
$to=$mailObj->headers['to'];
// Get Subject
$subj=$mailObj->headers['subject'];
// Get Message Body
$body=$mailObj->parts[0]->body;
$gather="From:$from\nSubject:$subj\nBody:$body";
from here the $from, $to, and $subj variables all get set appropriately. $body is empty in the case of emails sent form Entourage though...