Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/loose-bikes-flow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'hive': patch
---

Force `base64` encoding for email text encoding with the SMTP provider.
1 change: 1 addition & 0 deletions packages/services/workflows/src/lib/emails/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ function smtp(config: SMTPEmailProviderConfig, emailFrom: string) {
to: email.to,
subject: email.subject,
html: email.body,
textEncoding: 'base64',
});
},
history: [],
Expand Down
Loading