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,
});
}