<?php

/* pop3.stream.php example #1

   This example simple reads an email from the stream and spits it out to the console/browser */

require("pop3.stream.php");

$file="pop3://username:password@server/1";

if(
$fp=fopen($file,'r')) {
    while(!
feof($fp)) {
        echo 
fread($fp,1024);
    }
    
fclose($fp);
}

?>