resend.deleteSuppression removes one suppression by its ID or email address.
automations/delete-resend-suppression.automation.ts
deleted confirmation.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove an address from the Resend suppression list.
resend.deleteSuppression removes one suppression by its ID or email address.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Remove Resend suppression", () => {
resend.deleteSuppression({ suppression: "blocked@example.com" })
})
deleted confirmation.