From 863778da1fd525cb139f752e03785b892d5d3d63 Mon Sep 17 00:00:00 2001 From: Matt Carroll Date: Tue, 5 May 2026 13:11:42 +1000 Subject: [PATCH] AP-8351 # Added emailTemplateId to forms apps for custom welcome email --- typescript/formsApps.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/typescript/formsApps.d.ts b/typescript/formsApps.d.ts index 145b5f5..6efb64a 100644 --- a/typescript/formsApps.d.ts +++ b/typescript/formsApps.d.ts @@ -317,12 +317,16 @@ type _NewFormsApp = WithCommonAssociations & { /** Forms App custom welcome email properties */ welcomeEmail?: { /** + * @deprecated Use `emailTemplateId` instead + * * A [mustache](http://mustache.github.io/#demo) template to use when * sending welcome emails to new app users. */ body?: string /** The subject to use when sending welcome emails to new app users */ subject?: string + /** The id of the email template to use when sending welcome emails to new app users */ + emailTemplateId?: number } /** True when using a SAML identity provider */ hasSamlIdentityProvider: boolean