resend.updateTemplate update a Resend email template.
automations/resend-updateTemplate.automation.ts
{ account } selects the Resend account binding.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update a Resend email template.
resend.updateTemplate update a Resend email template.
import { automation } from "automate.ax"
import { resend } from "automate.ax/resend"
export default automation("Update template", () => {
resend.updateTemplate({
template: "welcome-email",
patch: { markdown: "# Updated welcome" },
})
})
{ account } selects the Resend account binding.