python - django-newsletter - no runjobs in manage.py commands? -
hi i'm reading docs using django-newsletter.
and says call following admin command send emails:
./manage.py runjob submit
in other parts of docs says runjobs
instead of runjob
.
anyways, i'm not seeing either runjob or runjobs in list of commands ./manage.py help
, though 'newsletter'
app in installed_apps
, can access in admin.
what missing?
i missing django_extensions in installed_apps
. actual requirements django-newsletter in installed_apps are:
installed_apps = ( ... 'sorl.thumbnail', 'django_extensions', 'newsletter', ... )
Comments
Post a Comment