Skip to main content

Reusable application for Django introducing a message delivery framework

Project description

https://github.com/idlesign/django-sitemessage

https://img.shields.io/pypi/v/django-sitemessage.svg https://img.shields.io/pypi/dm/django-sitemessage.svg https://img.shields.io/pypi/l/django-sitemessage.svg https://img.shields.io/coveralls/idlesign/django-sitemessage/master.svg https://travis-ci.org/idlesign/django-sitemessage.svg?branch=master https://landscape.io/github/idlesign/django-sitemessage/master/landscape.svg?style=flat

Description

Reusable application for Django introducing a message delivery framework.

Schedule and send messages with several easy steps, using concepts of:

  • Messengers - clients for various protocols (smtp, jabber, twitter, telegram, facebook, vkontakte, etc.);

  • Message Types - message classes exposing message composition logic (plain text, html, etc.).

  1. Configure messengers for your project (create sitemessages.py in one of your apps):

from sitemessage.toolbox import register_messenger_objects, register_builtin_message_types
from sitemessage.messengers.smtp import SMTPMessenger

register_messenger_objects(
    # Here we register only one messenger to deliver emails.
    SMTPMessenger('user1@host.com', 'user1', 'user1password', host='smtp.host.com', use_tls=True)
)

# And register built-in message types we'd use (for Django < 1.7).
register_builtin_message_types()
  1. Schedule messages for delivery when and where needed (e.g. in a view):

from sitemessage.shortcuts import schedule_email

def send_mail_view(request):
    ...

    # Suppose `user_model` is a recipient Django User model instance.
    user1_model = ...

    # We pass `request.user` into `sender` to keep track of senders.
    schedule_email('Message from sitemessage.', [user1_model, 'user2@host.com'], sender=request.user)

    ...
  1. Periodically run Django management command from wherever you like (cli, cron, Celery, etc.):

    ./manage.py sitemessage_send_scheduled

And that’s only the tip of sitemessage iceberg, read the docs %)

Documentation

http://django-sitemessage.readthedocs.org/

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-sitemessage-0.8.3.tar.gz (54.4 kB view details)

Uploaded Source

Built Distribution

django_sitemessage-0.8.3-py2.py3-none-any.whl (59.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-sitemessage-0.8.3.tar.gz.

File metadata

File hashes

Hashes for django-sitemessage-0.8.3.tar.gz
Algorithm Hash digest
SHA256 aec911126ff7cf6745ed173eb06fa57d367b7d1d93fbdd146e9c1827ee27cd8f
MD5 949c1ca6a061a10d26b73fefa9b9eb3b
BLAKE2b-256 b2d489673a07b13fd37497dcf078e3cf213a8365ac7af8bd8600d4e1cb6ce67b

See more details on using hashes here.

File details

Details for the file django_sitemessage-0.8.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_sitemessage-0.8.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4affa286563eba77cb2e95e15fe11d243e50829c3b9e37f6e8b831c10d281c8e
MD5 5efdaed5561b602af0ea67d56610b808
BLAKE2b-256 aa1102a1688077dc5b774d4f18b55b47bb264ad99212b7660036c79cdc1398c9

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