django-drip icon indicating copy to clipboard operation
django-drip copied to clipboard

:droplet: Use Django admin to manage drip campaign emails using querysets on Django's User model.

Results 18 django-drip issues
Sort by recently updated
recently updated
newest added

I'd do a pull request to fix this, but can't see the repo.

Inspired by: http://kevindias.com/writing/django-custom-user-models-south-and-reusable-apps/

If you install django-drip from PyPI using pip install django-drip, the templates directory isn't included. Therefore, the view timeline and preview email functionality isn't included out of the box.

In addition, this should make the base not tied to `User`, but instead selectable off of something in the `ContentType` framework.

enhancement

Might be cool to trigger off of any registered Django signal like User created, updated, deleted, etc...

enhancement

Since we turn HTML -> text via strip tags, we end up with borked links, IE: ``` my example ``` ...turns into... ``` my example ``` ...but should probably be......

bug