Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- MAUTICCONSOLE="/var/www/html/mautic/bin/console"
- if [ -z "$(ls -A /var/www/html/mautic/var/spool)" ]; then
- php $MAUTICCONSOLE mautic:broadcasts:send --limit=50
- php $MAUTICCONSOLE mautic:campaigns:rebuild --batch-limit=300
- php $MAUTICCONSOLE mautic:segment:update --batch-limit=900
- php $MAUTICCONSOLE mautic:campaigns:trigger
- php $MAUTICCONSOLE mautic:import --limit=500
- php $MAUTICCONSOLE mautic:webhooks:process
- php $MAUTICCONSOLE mautic:reports:scheduler
- php $MAUTICCONSOLE mautic:maintenance:cleanup --days-old=365
- else
- php $MAUTICCONSOLE mautic:broadcasts:send --limit=200
- php $MAUTICCONSOLE mautic:emails:send --message-limit=200
- fi
Advertisement
Add Comment
Please, Sign In to add comment