Tag Archives: Mailbox

Accessing Local Mailbox using PHP

Install Pear Package Mail_Mbox

Type in the terminal-

pear install Mail_Mbox

Mailbox Accessing Code:

<?php

require_once( 'Mail/Mbox.php' );

$file = "file_path_to/filename";

$mailbox = new Mail_Mbox( $file );
$mailbox->open();

for( $mail = 0;$mail < $mailbox->size();$mail++ )
{
echo $mailbox->get($mail);}
?>

Leave a comment

Filed under Vimmaniac