mailerpress/resume-campaign-batch flips a paused batch back to pending so Action Scheduler picks it up on the next tick.
It only affects the batch state.
At a glance
| Ability | mailerpress/resume-campaign-batch |
| Toolset | MailerPress — toolset/mailerpress |
| Group | MailerPress › Campaigns & Sending |
| Requires | AcrossAI Pro, plus MailerPress active on the site |
| Capability | manage_options |
| Safety | Writes data |
| Repeatable | Idempotent — running it twice leaves the same result |
| Ships in | AcrossAI Pro 0.9.16 and later |
How it works
The cancelled Action Scheduler actions are not recreated by this ability. MailerPress reissues them when it sees the pending batch, which means resuming is a state change followed by MailerPress doing the work.
The practical consequence is that resuming is not instant. The next tick picks it up, and how long that is depends on the site’s scheduler.
A resumed batch continues from where it stopped — the completed chunks stay completed, so nobody is emailed twice.
If the campaign content was changed while paused, the remaining chunks send the new version. That is usually the intent and it does mean the audience received two different emails.
Idempotent.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
batch_id | integer | Yes | The paused batch. |
What comes back
| Name | Type | What it is |
|---|---|---|
resumed | boolean | Whether the batch was set to pending. |
success | boolean | Whether the call completed. |
message | string | A one-line summary of what happened, suitable for showing a human. |
error_code | string | Present only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation. |
Example
Ask your assistant:
Resume that paused send.
It resolves to one call:
{
"ability": "mailerpress/resume-campaign-batch",
"parameters": {
"batch_id": 91
}
}Worth knowing
- Not instant — the next scheduler tick picks it up.
- Completed chunks stay completed. Nobody is emailed twice.
- Content changed while paused goes to the remaining chunks only.
- Idempotent.
Related abilities
- MailerPress Pause Campaign Batch — the reverse
- MailerPress Get Batch Chunks — watch it progress
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category