Advertisement
Guest User

Untitled

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