[Django]-Django/Python mailing list implementation

2👍

You should have a look at mailchimp

👤lprsd

4👍

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!

Leave a comment