1

I'm looking for a way for users to message each other via the website, with their own inbox, sent, etc folders, and to receive and reply to these messages via email as well. The email addresses used for replying are generated by the app to hide user's real emails. The app sits in the middle of the two users via the site and via email.

Both django-messages and django-postman give very little information about what email-related features they have. Can either do this, or is there an alternative?

Thanks

StringsOnFire
  • 2,726
  • 5
  • 28
  • 50

1 Answers1

0

django-messages includes pretty much all you asked for including inbox, outbox, trash and many more goodies

django-postman seems even better and is in active development

try out these packages they both include documentation.

StringsOnFire
  • 2,726
  • 5
  • 28
  • 50
Jesus Gomez
  • 1,460
  • 13
  • 30
  • But neither state in the docs that they perform this email-to-app-to-email feature, only that they notify the user via email – StringsOnFire Aug 17 '15 at 16:02
  • they are both open source and already have most of the functionality you need, you can probably try to extend them to support the features you need. – Jesus Gomez Aug 17 '15 at 18:35