Login   Register  
PHP Classes
elePHPant
Icontem

File: impclasstest.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Harish Chauhan  >  IMAP  >  impclasstest.php  >  Download  
File: impclasstest.php
Role: Example script
Content type: text/plain
Description: Example file
Class: IMAP
Access IMAP mailboxes without PHP IMAP extension
Author: By
Last change:
Date: 2005-06-05 21:34
Size: 843 bytes
 

Contents

Class file image Download
<?php


    
include_once("imap.inc.php");
    include_once(
"mimedecode.inc.php");
    
$imap=new IMAPMAIL;
    if(!
$imap->open("192.168.0.26","143"))
    {
        echo 
$imap->get_error();
        exit;
    } 

    
$imap->login("harishc","hchauhan");
    echo 
$imap->error;
    
$response=$imap->open_mailbox("INBOX");
    echo 
$imap->error;
    
//echo $response=$imap->get_msglist();
    //echo $response=$imap->delete_message(9);
    //echo $response=$imap->rollback_delete(9);
    
$response=$imap->get_message(1);


    
///Decoding the mail    

    
$mimedecoder=new MIMEDECODE($response,"\r\n");
    
$msg=$mimedecoder->get_parsed_message();
    
print_r($msg);
    
//echo nl2br($response);
    
echo $imap->get_error();
    
$imap->close();
    
//$response=$imap->fetch_mail("3","BODYSTRUCTURE");
    //print_r($response);
    //echo nl2br($response);
    //echo $imap->error;
    
echo "<br>";


?>