Public
Receives email newsletters and stores them in SQLite
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Receives email newsletters and stores them in a SQLite database.
receive.ts— An email handler. Forward your newsletters to the val's email address and each message is stored in SQLite (sender, subject, plain text, HTML, and timestamp).view.ts— An HTTP endpoint that lets you browse the archive in your browser.
Send newsletters to:
fgeierst-9b1cea667dc711f1b8261607ee4eb77e@valtown.email
Open the archive viewer in your browser to see all stored newsletters.
| Column | Type | Description |
|---|---|---|
id | INTEGER | Auto-increment primary key |
from_addr | TEXT | Sender email |
to_addr | TEXT | Recipient(s) |
subject | TEXT | Email subject |
text | TEXT | Plain text body |
html | TEXT | HTML body |
received_at | TEXT | UTC timestamp |
- Forward newsletters to the val's email address to start archiving.
- Use your email client's auto-forward rules to archive automatically.
- The viewer shows up to 200 most recent newsletters.