Public
Email
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

This val forward mails to my inbox

1
2
3
4
5
6
7
8
9
import { email as sendEmail } from "https://esm.town/v/std/email?v=11";
export default async function(email: Email) {
await sendEmail({
subject: email.subject,
text: email.text,
html: email.html,
});
}
March 7, 2024