I have a Django application that presents a list of items to which you can add comments.
What I basically want to do is something like Facebook: when someone posts a comment on your item, you will receive an email. What I want to do is when you reply to this email, the response should be posted as a comment on the comment on the website.
What should I use to achieve this using python as much as possible? Maybe even Django?
source
share