I have been trying to search for the right way to go about creating a "subscribe to comments feeds" with an email subscription, seen on many blog. I have got an RSS feed working, but would prefer to use a cleaner email subscription.
What is the right way to go about this. Should I create a new class in the models.py file to create new database tables to handle it, or is it better to use third party applications? I prefer to keep from using things like Intense Debate. I want to keep it Django as much as possible.
I am assuming that this is already available in Django?
Basically, I want to create something like the "Notify .... daily of new answers" bit at the bottom of this page as I write this question.
Edit: I wonder if I should be trying to use signals to do this with?