Jump to content

how to read email using php


php1

Recommended Posts

You will need to make sure the php_ldap.so extension is in your php extensions directory and that you have a line in your extensions list along the lines of:

 

extension=php_ldap.so

;extension=php_ldap.so

 

This may already exists as a comment so just remove the semi-colon to apply.

 

You may also have to restart the apache service.

 

thank u so much for ur great help. I also have one doubt that how to set up a imap/po3 server for linux system.

<?php

 

$server = "www.rediffmail.com";

 

$user = "joby";

 

$pass = "jobytest";

 

$conn = @imap_open("\{$server/imap}INBOX", $user, $pass)

 

or die("Connection to server failed");

 

?>

 

 

i got as connection to server failed.  whether i have to do any other things to make my imap working

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.