mailerpress/rename-campaign renames a campaign’s internal name, which is what administrators see in the campaign list.
It does not change the email subject line or a sent campaign’s recipient-facing content.
At a glance
| Ability | mailerpress/rename-campaign |
| 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
That separation is worth stating because the two are easy to conflate. The internal name is organisational — “September update v3” — and the subject is what lands in an inbox.
Renaming is safe on any campaign at any stage, including one already sent. The archive of what was sent is unaffected; only the label changes.
The subject lives in emailConfig and is written through mailerpress/update-campaign-settings or mailerpress/update-campaign.
On a site with many campaigns the internal names are the only navigation, so a consistent convention is worth more than it looks.
Idempotent.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
id | integer | Yes | The campaign ID. |
name | string | Yes | The new internal name. |
What comes back
| Name | Type | What it is |
|---|---|---|
campaign | object | The campaign after the rename. |
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:
Rename that campaign.
It resolves to one call:
{
"ability": "mailerpress/rename-campaign",
"parameters": {
"id": 44,
"name": "September update — final"
}
}Worth knowing
- Internal name only. The subject is a different field.
- Safe on a sent campaign — the archive is unaffected.
- Internal names are the only navigation on a large site.
- Idempotent.
Related abilities
- MailerPress Update Campaign Settings — change the subject
- MailerPress List Campaigns — where the name appears
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category