django-newsletter
django-newsletter copied to clipboard
submit_newsletter on UI page
Is there any way to submit_newsletter on the admin page instead of accessing the server and running python manage.py submit_newsletter
? I understand it would be easier for developers to run the command on terminal, but I think making a button on UI admin would make it more friendly to users.
Yes. Doing so, marketing guys can also do this stuff
have same problem. At present, the user/admin have to always contact the developer to send the newsletter. Is there any way to submit the newsletter from django admin panel?
You should create a recurring task / cron job to run the "submit_newsletter" management command. Then whenever emails are put into the queue they will be sent automatically.