Guest User

Untitled

a guest
Mar 30th, 2023
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. MAUTICCONSOLE="/var/www/html/mautic/bin/console"
  4.  
  5.  
  6. if [ -z "$(ls -A /var/www/html/mautic/var/spool)" ]; then
  7.  
  8. php $MAUTICCONSOLE mautic:broadcasts:send --limit=50
  9. php $MAUTICCONSOLE mautic:campaigns:rebuild --batch-limit=300
  10. php $MAUTICCONSOLE mautic:segment:update --batch-limit=900
  11. php $MAUTICCONSOLE mautic:campaigns:trigger
  12. php $MAUTICCONSOLE mautic:import --limit=500
  13. php $MAUTICCONSOLE mautic:webhooks:process
  14. php $MAUTICCONSOLE mautic:reports:scheduler
  15. php $MAUTICCONSOLE mautic:maintenance:cleanup --days-old=365
  16.  
  17. else
  18. php $MAUTICCONSOLE mautic:broadcasts:send --limit=200
  19. php $MAUTICCONSOLE mautic:emails:send --message-limit=200
  20. fi
Advertisement
Add Comment
Please, Sign In to add comment