How to automatically send a certain number of emails per day from the same list

Hi everyone,

I’m trying to automatically send a certain number of emails per day from the same list.
For example, I need to send 500 mails / day from a list of 5 000, with a cron task.

I have set the “Maximum subscribers to send” (Step 6, Slice) to 500, but then, not other message can be sent anymore.

How do I go about this?

Thank you for your insights.

Okay, given the lack of success with my message, I’m going to assume that’s not possible. So I’ll do it by hand.

The solution :
https://doc.ubuntu-fr.org/cron

And use MAILQUEUE_BATCH_SIZE and MAILQUEUE_BATCH_PERIOD in the config/config.php

For example: send 60 email every 100 seconds, from 10am to 11am
Cron: * 10-11 * * * [command]
Config.php : ```
define(‘MAILQUEUE_BATCH_SIZE’,60);
define(‘MAILQUEUE_BATCH_PERIOD’,100);