https://github.com/apihackers/wagtail-sendinblue
SendInBlue integration for wagtail
https://github.com/apihackers/wagtail-sendinblue
Last synced: 6 months ago
JSON representation
SendInBlue integration for wagtail
- Host: GitHub
- URL: https://github.com/apihackers/wagtail-sendinblue
- Owner: apihackers
- License: mit
- Created: 2016-06-14T02:55:03.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-16T23:41:07.000Z (almost 9 years ago)
- Last Synced: 2026-01-04T13:05:05.458Z (7 months ago)
- Language: Python
- Size: 53.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Wagtail SendInBlue
[Wagtail](https://wagtail.io/) integration for [SendInblue][].
## Installation
Install it with pip:
```shell
pip install wagtail-sendinblue
```
Add `sendinblue` to your `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
# ...
'sendinblue',
# ...
]
```
Add the `sendinblue.urls` to your `urls.py`:
```python
from sendinblue import urls as sendinblue_urls
urlpatterns = [
# ...
url(r'', include(sendinblue_urls)),
url(r'', include(wagtail_urls)),
]
```
## Configuration
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](https://account.sendinblue.com/advanced/api?ae=312).
## Automation support
There is an optionnal support for Automation.
You need to add the following at the end of your base Django template:
```html+jinja
{% sendinblue %}