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

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -