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

Email for OpenAPI account

1
2
3
4
5
6
7
8
9
10
11
import { email } from "https://esm.town/v/std/email?v=11";
export function forwarder(e: {
from: string;
to: string[];
subject: string;
text: string;
html: string;
}) {
return email({ html: e.html, subject: e.from + ": " + e.subject });
}
May 8, 2024