InstallationΒΆ
Run this simple command in your terminal:
pip install djangomailup
Add 'djangomailup' to your INSTALLED_APPS setting:
INSTALLED_APPS = [
... # other apps
'djangomailup',
]
Then add MAILUP configurations in your settings like:
MAILUP = {
"default": {
"client_id": "client_id",
"client_secret": "client_secret",
"username": "m1234",
"password": "password",
},
}
where:
default: is the name of configurationclient_idandclient_secretare tokens for MailUp API RESTusernameandpasswordare credentials for MailUp account