1
2
3
4
5
6
7
8
9
10
11
12
import { fetch } from "https://esm.town/v/std/fetch";
export async function sendMessage(ptnKey: string, message: string) {
await fetch("https://app.phonetonote.com/hooks/zapier", {
body: JSON.stringify({
ptn_key: ptnKey,
text: message,
}),
method: "POST",
headers: { "Content-Type": "application/json" },
});
}