resend.onSuppressionRemoved handles suppression.removed.
automations/resend-suppression-removed.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run an automation when an address leaves the Resend suppression list.
resend.onSuppressionRemoved handles suppression.removed.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Resend suppression removed", () => {
resend.onSuppressionRemoved().transform(({ email, id }) => ({ email, id }))
})