Public
Script
Readme

Send an email via resend

Requires a resend API key, which you can get for free.

Usage

@stevekrouse.resend({
  from: "onboarding@resend.dev",
  to: "steve@val.town",
  subject: "Hello World",
  html: "Congrats on sending your first email!",
  apiKey: @stevekrouse.secrets.resend,
});
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
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON";
export function resend({ from, to, subject, html, text, apiKey }: {
from: string;
to: string;
subject?: string;
html?: string;
text?: string;
apiKey: string;
}) {
return fetchJSON("https://api.resend.com/emails", {
method: "POST",
headers: {
"Authorization": `Bearer ${apiKey}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
from,
to,
subject,
html,
text,
}),
});
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023