From 9ee09ede304c2b5d3d6da6786d93582463b0c6ee Mon Sep 17 00:00:00 2001 From: "Geiger, Stefan" Date: Tue, 17 Mar 2026 17:11:48 +0100 Subject: [PATCH 1/2] fix: ISSUE-7702 email links with unlucky length --- packages/services/workflows/src/lib/emails/providers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/services/workflows/src/lib/emails/providers.ts b/packages/services/workflows/src/lib/emails/providers.ts index 66a04194425..52dbbee5dc3 100644 --- a/packages/services/workflows/src/lib/emails/providers.ts +++ b/packages/services/workflows/src/lib/emails/providers.ts @@ -134,6 +134,7 @@ function smtp(config: SMTPEmailProviderConfig, emailFrom: string) { to: email.to, subject: email.subject, html: email.body, + textEncoding: 'base64', }); }, history: [], From 7e9409caa59904f4974a5cc973db82763d1bc840 Mon Sep 17 00:00:00 2001 From: Laurin Quast Date: Wed, 18 Mar 2026 14:14:16 +0100 Subject: [PATCH 2/2] changeset --- .changeset/loose-bikes-flow.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/loose-bikes-flow.md diff --git a/.changeset/loose-bikes-flow.md b/.changeset/loose-bikes-flow.md new file mode 100644 index 00000000000..fc6063f6616 --- /dev/null +++ b/.changeset/loose-bikes-flow.md @@ -0,0 +1,5 @@ +--- +'hive': patch +--- + +Force `base64` encoding for email text encoding with the SMTP provider.