Installation and configurationΒΆ
Install package from pypi:
pip install django-drip-campaigns
Add
dripapp to theINSTALLED_APPSlist in your project settings:
INSTALLED_APPS = [
...,
'django.contrib.contenttypes',
'django.contrib.comments',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
# ...
'drip',
]
(Optional) Set
DRIP_FROM_EMAIL = '<your_app_from_email>'in your settings, where<your_app_from_email>is the email account that is going to be shown in the sent emails. OtherwiseEMAIL_HOST_USERvalue will be used.Finally, run
migrateto set up the necessary database tables:
python manage.py migrate drip