My Mautic version is: 4.1.0
My PHP version is:7.4
My Database type and version is: Mariadb 10.5
How should email be handled?–>Immediately
Default Frequency Rule–>Do not send me more than–>20 per day.
@joeyk OK for the fetching and thanks for your explanation. In case of future use, I keep the spool script there.
One question:how to adjust this broadcast scrip to send 1 email every 2 or 3 minutes?
I think it maybe needs to set on crontab not on script?
I can see that 1 Email failed in that channel. This is why it’s not sent. Now you need to figure out why that email is failing. Last time for me it was something so trivial as leaving a COMMA in the sender name.
Maybe there is something with your tokens?
Regarding your 2nd quertion, there are 3 solutions:
If you run your script every minute and you send 1 email / broadcast, then your rate will be 1 email / min (not a solution)
If you want to slow it down, you need to run your script only every 2-3 min. (not a solution)
You can take your broadcast cron and run it separately every 3 min:
*/3 * * * * command
Secret solution: you could adjust the script to have a condition that makes sure the script is run only every 3 min.