The ThirdSetMauticTimingBundle is a Mautic plugin that allows you to set a cron timing expression on any Campaign action events (such as a "Send Email" action).
For example, you could add a cron expression that only allows sending on weekdays during working hours in New York.
This plugin has been tested with up to v2.7.1 of Mautic.
- Adds the full ability of cron syntax to your campaign actions allowing you to only send emails at certain times.
- Use different cron expressions on different campaign actions.
- Enter a timezone to use when evaluating the cron expression (this allows you to send an email during working hours in your own timezone, for example).
- Use different time zones for different cron expressions/campaign actions.
- Use the Contact's time zone (if available) to evaluate the cron expression. It will fall back to use any time zone you specify (or the System Default time zone) if the Contact's time zone isn't known.
- Download or clone this bundle into your Mautic
/plugins
folder. - Manually delete your cache (app/cache/prod).
- In the Mautic GUI, go to the gear and then to Plugins.
- Click the down arrow in the top right and select "Install/Upgrade Plugins"
- You should now see the Timing plugin in your list of plugins.
- Run the following console commands to ensure that the database was updated:
php app/console doctrine:schema:update --dump-sql
php app/console doctrine:schema:update --force
After installing the plugin, you will now see a new Timing section when adding or editing Campaign actions.
The expression field allows you to enter a cron expression for the timing to be evaluated against. See the Wikipedia Cron Page for a good overview of cron syntax.
Note that it is best to use ranges (ex: "1-5") instead of exact values. This is because the expression is evaluated when the campaign is triggered and when that happens is external to this plugin.
Example:
* 09-17 * * 1-5
(Weekdays, 9AM to 5PM)
When this field is enabled, the plugin will evaluate the cron expression off of the Contact's time zone. This allows you to only send emails during the Contact's working hours.
If the Contact's time zone isn't known, the plugin will fall back to the system default time zone or the time zone that you set with the Time Zone field (see below.)
If a time zone is specified in this field, the cron expression will evaluate against the selected time zone. This allows you to do things such as only sending emails during your working hours.
If you've enabled the "Use Contact's Time Zone" field, the contact's time zone would be used instead of this field (unless the Contact's time zone is unknown in which case the plugin will fall back to the time zone specified here).
This plugin includes a suite of unit tests. You will need to have PHPUnit installed in order to run the tests.
apk update && apk add ca-certificates && update-ca-certificates && apk add openssl
/usr/bin/wget https://phar.phpunit.de/phpunit.phar -O /usr/bin/phpunit && chmod 755 /usr/bin/phpunit
Once PHPUnit is installed, you can run the tests by navigating to the root directory of this plugin and running:
phpunit
This plugin is developed and maintained by Third Set Productions the makers of AdPlugg.
This plugin is licensed under GPLv3.
The GPL clearly explains that there is no warranty for this free software. Please see the included license.txt file for details.