Remote Scheduling - Stops sending after 1 minute - How can I fix to send automatically?

We’d like to set up a campaign using the remote process. We’ve got it set up to send 1 email every 60 seconds. But in order to send out the additional emails in the queue, we have to hit the manual link each time.

What we want it to be able to send our emails without having to manual click on the link each time to send them. What solution do you suggest that enable that to work?

Doing uncommon things may have uncommon consequences.

First of all, the queue processing system is not meticulous on the second on managing the sending. Basically all it does is check every so often if there’s something to send and then invoke it up to the limits it is allowed, and then check back some other time.

Secondly, it is set up to send in “batches”. It’ll send X emails, wait a little while and then check if there’s more to do and do it.

If you want atomic precision, it’s not going to work. You could try to set up some local system that handles that.

The queue processing, both remote and local is simply about:

  1. I need my newsletter sent to X subscribers
  2. send a few, wait a while
  3. have all been sent, great, if not, go back to step 2

With the remote processing system, it rotates over everyone who is sending, so if there are other people sending at that time, the delay between 2 and 3 may vary.

1 Like