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?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?