Readme

Unlimited Anonymous Emails

All code can be triggered via email (docs), i.e. maas.forwarder@valtown.email. You can generate as many emails as you want to avoid giving away your personal email address and reduce spam.

Getting started

  1. Log in to Val Town
  2. Fork this Val
  3. Publish the Val via 🔒 > Unlisted
  4. Copy the email endpoint via â‹® > Endpoints > Copy email address
  5. Sign up for newsletters or services using this email (maas.forwarder@valtown.email).

To remove their ability to email you, simply delete the val (or send it to /dev/null).

1
2
3
4
5
6
7
8
9
export function forwarder(e: {
from: string;
to: string[];
subject: string;
text: string;
html: string;
}) {
console.email({ html: e.html, subject: e.subject });
}
👆 This is a val. Vals are TypeScript snippets of code, written in the browser and run on our servers. Create scheduled functions, email yourself, and persist small pieces of data — all from the browser.