resend.onContactDeleted handles contact.deleted.
automations/resend-contact-deleted.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 a Resend contact is deleted.
resend.onContactDeleted handles contact.deleted.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Resend contact deleted", () => {
resend.onContactDeleted().transform(({ email, id }) => ({ email, id }))
})