Statistics show only 147 of 619 sent

I just sent a campaign to 619 users, but the statistics show only 147 emails were sent!

  1. How do I fix this in the future?
  2. How can I resend the campaign to just those who didn’t receive it?

The changes to Config.php were to throttle sending for my server:

ADDED

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”,450);

define the length of one batch processing period, in seconds (3600 is an hour)

define(“MAILQUEUE_BATCH_PERIOD”,3600);

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’,9);

Manual text part, will give you an input box for the text version of the message

instead of trying to create it by parsing the HTML version into plain text

define(‘USE_MANUAL_TEXT_PART’,1);

=====================
your help is greatly appreciated.
Doug

The log file.
phpListLog31Jan24.zip (1.4 KB)

@weldmet

Campaign sending timed out, is past date to process until

You need to amend the “stop sending after”" date for the campaign to be in the future.

Is there any way to send it to only those that didn’t get sent?

@weldmet That will happen anyway, so long as you just change that date and resubmit the campaign.

1 Like