Form submission flowing through a pipeline to email notifications

Email Notifications for Cloudflare D1 Forms

You built a comments system. Users are submitting feedback. But you only find out when you remember to check the D1 console. By then, someone has been waiting days for a response. This post covers three approaches to getting notified when form submissions arrive: instant emails, daily digests, and webhook-based notifications. Each has trade-offs in complexity, cost, and flexibility. The Problem The comments system from my previous post stores submissions in Cloudflare D1. Moderation happens manually via SQL queries in the D1 console. This works, but it requires actively checking for new submissions. ...

January 11, 2026 · Uttam Jaiswal
Isometric illustration showing a static site document connected to a cloud database and security shield - representing the D1 and Turnstile architecture

Build Comments System: Cloudflare D1 + Pages Functions

Static sites are fast, secure, and simple to deploy. But they lack one thing out of the box: interactivity. Comments, likes, and other dynamic features traditionally require a backend. This tutorial walks through how I built a comments and likes system for this site using Cloudflare’s serverless stack: D1 (SQLite database), Pages Functions (serverless API), and Turnstile (spam protection). No external services. No third-party tracking. Everything runs on Cloudflare’s edge network. ...

January 1, 2026 · Uttam Jaiswal