resend.addSuppressionsBatch adds between 1 and 100 email addresses to the suppression list.
automations/add-resend-suppressions.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Suppress up to 100 Resend recipients.
resend.addSuppressionsBatch adds between 1 and 100 email addresses to the suppression list.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Suppress Resend recipients", () => {
resend.addSuppressionsBatch({
emails: ["one@example.com", "two@example.com"],
})
})