Message users in Cake

2009-03-25 Thread Dave Maharaj :: WidePixels.com
Does anyone know of a good setup where users can send messages back and forth to other users? Something like a email app but only its not sent to an actual email, just a message on the site its self. Thanks Dave --~--~-~--~~~---~--~~ You received this message

Re: Message users in Cake

2009-03-25 Thread andruu
Create a table called messages with a from_user_id column that relates back to the user sending the message, a to_user_id which will relate to the user who is receiving the message. then a body field for the actual message. Should be quite simple. On Mar 25, 8:41 pm, Dave Maharaj ::

Re: Message users in Cake

2009-03-25 Thread Alfredo Quiroga-Villamil
This usually goes hand-in-hand with some privacy. In most cases you will only want users who are buddies to be able to send messages to each other. In other words, you would need a buddy system, which will complicate things a bit more but would make your application a little bit more robust. If