Quintin Par
Quintin Par

Reputation: 16252

Django admin app to send mail to users

Is there a Django app or extension that can be used from the admin panel to select users and send mails to them?

Possibly with a markup editor?

Upvotes: 0

Views: 1722

Answers (1)

phemios
phemios

Reputation: 674

After a quick google search the only app I found that could fit is django-mailer.

Sample Use Cases

  • a site admin wants to send a one-off announcement to all users on a site
  • a site admin wants to send a one-off email to a subset of users (e.g. thank you note to users who completed a survey)
  • a site admin wants to send an email but wants to defer it to a particular date or time (e.g. send out at 9am tomorrow a reminder of the scheduled downtime at 10am)
  • a site admin wants to send a regular email to a subset of users (e.g. people who haven’t logged in for over a month)

Another way would be to customize yourself the admin. I invite you to read this thread: Django Admin Customizing

Upvotes: 1

Related Questions