All Projects → scdoshi → django-notifier

scdoshi / django-notifier

Licence: BSD-2-Clause license
Send notifications (Email, SMS etc) and manage preferences and permissions per user and group.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

django-notifier

Send notifications (Email, SMS etc) and manage preferences and permissions per user and group.

See full documentation at http://django-notifier.rtfd.org/

To register a notification:

create_notification('test-notification')

To send notifications:

send_notification('test-notification', [user1, user2, ..])

Installation

Install via pip:

$ pip install django-notifier

Setup

  1. Add notifier to INSTALLED_APPS in your django settings file.

    INSTALLED_APPS = (
        ...
        'notifier',
        ...
    )
    
  2. Settings

    If you are going to use any custom backends to send notifications, add the setting NOTIFIER_BACKENDS to your settings file. If this setting is not defined, only the EmailBackend is used by default.

    NOTIFIER_BACKENDS = (
        'notifier.backends.EmailBackend',
        'path.to.custom.backend.CustomBackend',
    )
    
  3. Run syncdb or migrate (if using South) to create the necessary tables in the database.

    $ python manage.py syndb
    

    If using South:

    $ python manage.py migrate
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].