-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpostmark.ts
34 lines (32 loc) · 1.07 KB
/
postmark.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type { ServerClient } from "postmark";
import { renderToStaticMarkup } from "react-dom/server";
import type { PostmarkProvider, SendEmailInput } from "../types";
function createPayloadFromEmailInput(
email: SendEmailInput
): Parameters<ServerClient["sendEmail"]>[0] {
return {
From: email.from,
To: Array.isArray(email.to) ? email.to.join(",") : email.to,
Cc: Array.isArray(email.cc) ? email.cc.join(",") : email.cc,
Bcc: Array.isArray(email.bcc) ? email.bcc.join(",") : email.bcc,
ReplyTo: Array.isArray(email.replyTo)
? email.replyTo.join(",")
: email.replyTo,
Subject: email.subject,
...("html" in email && email.html
? { HtmlBody: email.html }
: "text" in email && email.text
? { TextBody: email.text }
: "react" in email && email.react
? { HtmlBody: renderToStaticMarkup(email.react) }
: { TextBody: "" }),
};
}
export function sendEmail(
postmarkProvider: PostmarkProvider,
email: SendEmailInput
): ReturnType<ServerClient["sendEmail"]> {
return postmarkProvider.postmark.sendEmail(
createPayloadFromEmailInput(email)
);
}