Wagtail integration for SendInblue.
Install it with pip:
pip install wagtail-sendinblueAdd sendinblue to your INSTALLED_APPS:
INSTALLED_APPS = [
# ...
'sendinblue',
# ...
]Add the sendinblue.urls to your urls.py:
from sendinblue import urls as sendinblue_urls
urlpatterns = [
# ...
url(r'', include(sendinblue_urls)),
url(r'', include(wagtail_urls)),
]Go to the Wagtail administration and in Settings > SendInBlue
enter your API Key.
You need a SendInBlue account and
you can retrieve it your SendInBlue administration.
There is an optionnal support for Automation.
You need to add the following at the end of your base Django template:
{% sendinblue %}
</body>
</html>or if using django-jinja:
{{ sendinblue() }}
</body>
</html>