Skip to content

Commit 060a1f0

Browse files
fix: Fix the Reply To email for Brevo
1 parent 52f33dd commit 060a1f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/utils/email.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ async function sendBrevoEmail({
124124
templateId,
125125
params,
126126
tags,
127-
...(replyTo ? { replyTo } : {}),
127+
...(replyTo ? {
128+
replyTo: {
129+
email: replyTo,
130+
}
131+
} : {}),
128132
}),
129133
});
130134

0 commit comments

Comments
 (0)