I am trying to use django-postman and I have successfully integrated it with my project. I want to use this application to give each user the ability to send messages to other users.

Can anybody point me in the right direction to do this thing.

link|improve this question

60% accept rate
feedback

1 Answer

After you make django-postman available on the Python path, you'll need to add it to the list of INSTALLED_APPS and initially configure it. For the time being, that will only provide with admin-based access to messages.

Adding (r'^messages/', include('postman.urls')), to your patterns in the root URL urls.py configuration will hook the django-postman views into your project and users will be able to access the messages interface there.

Make sure to have a look at the official documentation for more details.

link|improve this answer
1  
I am replying so late as I was out of town... I have done what you have written above.. I have included the postman views... And I am getting the interface for creating new messages and viewing inbox but I am unable to send any message. I mean when I send a message I put a registered user's username in the to field.. but the message is not received by the user... I have deactivated moderation – Sachin Dec 20 '11 at 8:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.