Djangomailup

https://badge.fury.io/py/djangomailup.png Updates https://travis-ci.org/simobasso/djangomailup.png?branch=master https://coveralls.io/repos/github/simobasso/djangomailup/badge.svg https://api.codacy.com/project/badge/Grade/df1f0dd3b14a4bc7ae43595a7880629d

Django app to integrate with MailUp

Documentation

The full documentation is at https://djangomailup.readthedocs.org.

Requirements

Quickstart

Install djangomailup:

pip install djangomailup

Add configuration in settings.py:

INSTALLED_APPS = [
    'djangomailup',
]

MAILUP = {
    "default": {
        "client_id": "client_id",
        "client_secret": "client_secret",
        "username": "m1234",
        "password": "password",
    },
}

Then use it in a project:

from djangomailup import MailUpClient

client = MailUpClient()

Features

  • TODO

Running Tests

Does the code actually work?

$ pip install -r requirements_test.txt
$ python runtests.py

Credits

Tools used this package: