Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 420 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 420 Bytes

django-eazy-email

pip install -e git+https://github.com/rhizomedotorg/django-eazy-email.git@master#egg=django_eazy_email-dev
INSTALLED_APPS (
    ...
    'django_eazy_email',
)

EAZY_EMAIL_CONTEXT_PROCESSORS = (
    'django_eazy_email.context_processors.static',
    'django_eazy_email.context_processors.media',
)
url(r'^email/', include('eazyemail.urls')),