Skip to content

Mautic App

About

Mautic a free and opensource marketing automation tool.

System cron jobs

Mautic often requires cron jobs to be triggered manually. For this, open the Web terminal and run the job manually like so:

sudo -E -u www-data php /app/code/bin/console mautic:segments:update

You can look into /app/data/crontab.system to look into the various pre-configured cron jobs.

Custom cron jobs

For cron support, app custom commands in the app's cron section.

The crontab contains a line like:

0,15,30,45 * * * *  sudo -E -u www-data php /app/code/app/console mautic:integration:fetchleads --integration=Hubspot

Mailer

Mautic 5 supports sending emails via Symfony mailer. The following mailer packages are pre-installed:

  • symfony/amazon-mailer
  • symfony/mailgun-mailer
  • symfony/postmark-mailer
  • symfony/sendgrid-mailer
  • symfony/mailjet-mailer

Clearing cache

To clear the cache, you can either delete /run/mautic/var/cache or you can run the following command using the Web terminal:

sudo -E -u www-data php /app/code/bin/console cache:clear