ui / django-post_office

A Django app that allows you to send email asynchronously in Django. Supports HTML email, database backed templates and logging.
MIT License
1.01k stars 270 forks source link

Suggestion: allow emails to be tagged #142

Open litchfield opened 8 years ago

litchfield commented 8 years ago

Use case: send user an email annoying them if they haven't done X by a certain date.

If we could tag the emails (with any arbitrary, non-unique-enforced string), we could simply schedule them all upfront. If/when they do X, we just .delete() them on the spot.

selwin commented 8 years ago

Sounds like a good idea to me, as long as we're able to implement this cleanly. Feel free to open a PR for this.

pkaczynski commented 6 years ago

Can you use other reusable apps to do it? Like django-taggit?