From 0cfcc5c93b99dcc1442e0c4561b08fbaebc6d3b3 Mon Sep 17 00:00:00 2001 From: Lars Berger Date: Tue, 3 Mar 2026 18:17:40 +0800 Subject: [PATCH] feat: Add `body` property to `SendEmailRequestWithTemplate` type definition --- lib/api/requests.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/api/requests.ts b/lib/api/requests.ts index fc04ee6..5fdd449 100644 --- a/lib/api/requests.ts +++ b/lib/api/requests.ts @@ -11,6 +11,7 @@ export type SendEmailRequestOptionalOptions = Partial<{ preheader: string; reply_to: string; bcc: string; + body: string; body_plain: string; body_amp: string; fake_bcc: boolean;