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 details)

Uploaded Source

File details

Details for the file django-tasker-unisender-0.0.1.tar.gz.

File metadata

  • Download URL: django-tasker-unisender-0.0.1.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for django-tasker-unisender-0.0.1.tar.gz
Algorithm Hash digest
SHA256 dbd85fd194e223cd98b5260973c36621a397282c8f765af0cb1e18af2f2f0112
MD5 6c11914919f05bb7ecd576438d13029e
BLAKE2b-256 9d02c88015f8edde741307b98d8a201a5ceb38476bdff949e8db5a9a49708c19

See more details on using hashes here.

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