close.onEmailSent starts an automation after Close sends an email.
automations/on-close-email-sent.automation.ts
account selects a named binding. Returns the Close event envelope with the sent CloseEmail in data.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run when Close sends an email.
close.onEmailSent starts an automation after Close sends an email.
import { automation } from "automate.ax"
import { close } from "automate.ax/close"
export default automation("On Close email sent", () => {
const event = close.onEmailSent()
// Track the sent Close email.
})
account selects a named binding. Returns the Close event envelope with the sent CloseEmail in data.