Phplist sends only 30 mails per batch

When I start the queue to send 500 emails I get an info via email that 30 mails were send. then stops the queue
what I have to change in the config.php?
who can help me?

here part of my config.php

++++++++++++++++++
# define the amount of emails you want to send per period. If 0, batch processing
# is disabled and messages are sent out as fast as possible
define("MAILQUEUE_BATCH_SIZE",200);

# define the length of one batch processing period, in seconds (3600 is an hour)
define("MAILQUEUE_BATCH_PERIOD",1800);

# to avoid overloading the server that sends your email, you can add a little delay
# between messages that will spread the load of sending
# you will need to find a good value for your own server
# value is in seconds, and you can use fractions, eg "0.5" is half a second
# (or you can play with the autothrottle below)

define('MAILQUEUE_THROTTLE',2.0);

+++++++++++++++++++++++

Sounds like you have the same problem as this guy, the solution to his issue is probably the same for you.
Change size of batches.

1 Like