<?php
$texto = <<<EOD
To: fred@example.com
hello, this is some text hello.
blah blah blah.
begin 644 test.txt
/=&AI<R!I<R!A('1E<W0*
`
end
EOD;
$aa = tmpfile();
fwrite($aa, $texto);
$datos = mailparse_uudecode_all($aa);
echo "BODY\n";
readfile($datos[0]["filename"]);
echo "UUE ({$datos[1]['origfilename']})\n";
readfile($datos[1]["filename"]);
// Limpiar
unlink($datos[0]["filename"]);
unlink($datos[1]["filename"]);
?>
El resultado del ejemplo sería:
BODY
To: fred@example.com
hello, this is some text hello.
blah blah blah.
UUE (test.txt)
this is a test