resend.createSuppression({ email }) manually suppresses one recipient.
automations/create-resend-suppression.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add an address to the Resend suppression list.
resend.createSuppression({ email }) manually suppresses one recipient.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Suppress Resend recipient", () => {
resend.createSuppression({ email: "blocked@example.com" })
})