Django Drip

使用 Django 管理工具,在 Django 的用户模型上使用 querysets 管理 drip 营销活动电子邮件。「💧 Use Django admin to manage drip campaign emails using querysets on Django's User model.」

Github星跟踪图

Django Drip

Build Status

Drip campaigns are pre-written sets of emails sent to customers or prospects over time. Django Drips lets you use the admin to manage drip campaign emails using querysets on Django's User model.

We wrote this specifically to scratch an itch at our startup Zapier. It currently runs all of our drip campaigns.

Read the docs or check out a demo.

Installing:

We highly recommend using pip to install django-drip, the packages are regularly updated
with stable releases:

pip install django-drip

Next, you'll want to add drip to your INSTALLED_APPS in settings.py.

INSTALLED_APPS = (
    'django.contrib.contenttypes',
    'django.contrib.comments',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',

    # Your favorite apps

    'drip',
)

Don't forget to add DRIP_FROM_EMAIL to settings.py, or else we will fall back to EMAIL_HOST_USER.

Finally, be sure to run python manage.py syncdb or python manage.py migrate drip to set up
the necessary database tables.

python manage.py syncdb
# or...
python manage.py migrate drip

what the admin looks like
what the admin looks like for the timeline

主要指标

概览
名称与所有者zapier/django-drip
主编程语言Python
编程语言Python (语言数: 2)
平台
许可证MIT License
所有者活动
创建于2012-10-28 05:34:06
推送于2022-10-27 09:55:50
最后一次提交2020-03-07 20:36:39
发布数7
最新版本名称v0.7.1 (发布于 2014-12-09 23:11:14)
第一版名称v0.1.0 (发布于 )
用户参与
星数640
关注者数85
派生数136
提交数131
已启用问题?
问题数27
打开的问题数9
拉请求数20
打开的拉请求数9
关闭的拉请求数8
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?