Possible Duplicate:
retrieve email using PHP and pop3 – what is your technique?
I was wondering if it is possible to check the email of an account through php. My hosting provider gives me the server address and I know the account information, how can PHP retrieve the emails and display them. All I need is the most basic form. Also I believe that it is a pop3 if that matters.
Thank you so much.
I use PHP imap with imap_open. You will find the doc here
Simple usage:
It is easy to use and works good but it will getting slow if you try to fetch 5000+ mails.
Alternative you can use fsockopen.
Edit:
To install: