tags:

views:

75

answers:

2

Hello everyone

My site requires sending periodic update emails to all our registered clients.

To keep our lists clear, I want to track all failed deliveries and purge the mailing lists accordingly. I am assuming I am not the first nor the last to do this.

Can anyone recommend an existing app/library that I can use to accomplish this goal ?

Thank you

+1  A: 

I think you need a mailing list server like mailman, there is django-mailman (a django's admin interface for mailman), and follow this steps:

  • Install mailman
  • Install django-mailman
  • Complete your user's registration algorithm for your users and register them in mailman.
  • When you need send a mail, send it to you mailman list.
  • Have a lot of fun!
diegueus9
A: 

You should have a look at mailchimp

Lakshman Prasad
While I was loath to use them at first (free is better than paid). Looks like they are going to be my choice after I took a look at their APIs.
Murkin