1
2
3
4
5
6
7
8
9
10
11
import { email } from "https://esm.town/v/std/email";
import { Hono } from "npm:hono@3";
const app = new Hono();
app.get("/", (c) => {
await email({ text: "emails emails emails!" });
return c.text("Email success!")
}
export default app.fetch;