django-notify-signup

Receive a notification for all user registrations.


Keywords
django
License
MIT
Install
pip install django-notify-signup==0.0.2

Documentation

django-notify-signup

Build Status Coverage Status PyPi

django_notify_signup sends an email notification for all user registrations. Celery is used to ensure email is sent outside of the webserver's request.

Installation

  1. Install the package
pip install django_notify_signup
  1. Add 'django_notify_signup' to INSTALLED_APPS

  2. Make sure there are email addresses in the Django ADMINS setting

https://docs.djangoproject.com/en/1.11/ref/settings/#std:setting-ADMINS

  1. Configure django project to send email

https://docs.djangoproject.com/en/1.11/ref/settings/#email-host

Settings (Optional)

Disable signup notifications. Recommended for running tests.

# settings.py
if 'test' in sys.argv:
	DISABLE_SIGNUP_NOTIFY = True