How to receive Mail in php?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
selvamdoom
Forum Newbie
Posts: 7
Joined: Wed Apr 29, 2009 12:53 pm

How to receive Mail in php?

Post by selvamdoom »

I know to send mail in php from mail function but i don't know to receive mail in php. so please help me how to receive mail in php.
top10ingoogle
Forum Newbie
Posts: 3
Joined: Sat May 30, 2009 8:12 am

Re: How to receive Mail in php?

Post by top10ingoogle »

You may be able to do this using a hosted service, Email2HTTP (http://www.email2http.com).

This will allow you to handle mail by simply writing a script that handles a form POST. Parts of the email would be delivered to your PHP script as form post variables, like $_POST["subject"], $_POST["body"], etc.

or you may want to try

http://en.pudn.com/downloads/sourcecode ... 27_en.html
Post Reply