Hi All, I am a php website developer and recently developing one website. Our requirement is to provide each user with their personal EMAIL box, where they can compose new email to send user INSIDE OUR WEBSITE ONLY. We do not need to send email to external email Id's. We will send just the intimation to the user of new email arrival to their inbox of our website. Any help in this regard is appreciated. Please suggest any readymade customizable module available for this. I guess this can be achieved by database only no need to setup email server ?? Thanks in advance, PHPWEBS
So you want to make something like a private messaging system that we have at forums? It easy, just make a database for messages with following fields: sentby, sentto, subject, body,read Now make a front end to send messages(INSERT data into the table) and to read messages(SELECT data from the table)