Skip to main content

Django Tasker UniSender - Service for mass email

Project description

https://travis-ci.org/kostya-ten/django_tasker_unisender.svg?branch=master Documentation Status https://api.codacy.com/project/badge/Grade/9fe057e68937477aab1aebd907aa0913 Requirements Status https://badge.fury.io/py/django-tasker-unisender.svg

Requirements

  • Python 3.6+

  • A supported version of Django >= 2.0

Installation

You can get Django Tasker Unisender by using pip:

$ pip install django-tasker-unisender

To enable django_tasker_unisender in your project you need to add it to INSTALLED_APPS in your projects settings.py

INSTALLED_APPS = (
    # ...
    'django_tasker_unisender',
    # ...
)

Add to your settings.py

UNISENDER_API_KEY="<< YOU API KEY>>"

You can get the api key at this link

Add to your models.py

from django_tasker_unisender.models import EmailModel

class Subscribe(EmailModel):

    class UnisenderMeta:
        list_id = 123456789 # Your list id contact on Unisender

Migrate your project

python manage.py makemigrations
python manage.py migrate

Add to your admin.py

from django.contrib import admin
from . import models

class SubscribeAdmin(admin.ModelAdmin):
    list_display = ('email',)

admin.site.register(models.Subscribe, SubscribeAdmin)

Full documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-tasker-unisender-0.0.1.tar.gz (7.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page