resend.onDomainCreated handles domain.created.
automations/resend-domain-created.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 domain is created.
resend.onDomainCreated handles domain.created.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Resend domain created", () => {
resend.onDomainCreated().transform(({ id, name }) => ({ id, name }))
})