resend.onContactCreated handles contact.created.
automations/resend-contact-created.automation.ts
account selects the Resend binding.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 created.
resend.onContactCreated handles contact.created.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Resend contact created", () => {
resend.onContactCreated().transform(({ email, id }) => ({ email, id }))
})
account selects the Resend binding.