Could you please suggest any available app for sending & managing emails in django?

link|improve this question

1  
maybe you should have a look at this question stackoverflow.com/questions/730573/… – Mark Oct 31 '10 at 18:22
feedback

2 Answers

up vote 1 down vote accepted

You can find a detailed comparison here: http://www.djangopackages.com/grids/g/email/

link|improve this answer
feedback

You can try implement this youself using http://docs.python.org/library/poplib.html and http://docs.python.org/library/smtplib.html#smtp-example but, if you describe what concrete functionality you need, may be i can suggest some ready Django app for you needs.

link|improve this answer
I just want to send the email notifications to certain users whenever there is a add/change in some specific models. Is there any way to achieve this? – Siva Nov 1 '10 at 4:42
You could use django's model signals (docs here: docs.djangoproject.com/en/dev/topics/signals) – zsquare Nov 1 '10 at 9:06
I have just wrote an app which can achieve this. Thanks for the help. – Siva Nov 1 '10 at 10:05
feedback

Your Answer

 
or
required, but never shown

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