Click to See Complete Forum and Search --> : Incoming Mail Receiving in PHP


cancer10
08-10-2008, 12:41 AM
Hi,


I just have downloaded the freeware version of ArGoSoft Mail Server and installed it on my PC.

I am now able to send mails to localhost using PHP mail() function and can see the mail with outlook express.

But does anyone know how do I view the incoming mails with PHP programming?

OR

is there any pre-made script to handle this?


Thanx for your support.

\\.\
08-10-2008, 05:11 AM
Very good choice of POP.

I have used this in the past.

If you check, you will find a web mail interface is accessible and I would suggest you check it is running on some port of your choice or 8080 so it won't clash with port 80 (http)

cancer10
08-10-2008, 05:23 AM
I didnt get u sorry.

I need to know how to read incoming mails using PHP

\\.\
08-11-2008, 04:08 AM
Unless they have changed the set up of the mail server, it comes with a built in http server which you need to set up.

if your already running a web server on your machine that the mail server is located on then this will clash with port 80 (http), so you need to stick it on port 8080 or another port of your choice and access it through its web interface with a URL like http://127.0.0.1:8080 for example.