惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Jina AI
Jina AI
The Cloudflare Blog
V
Visual Studio Blog
博客园_首页
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building automated booking reminders with Vercel Cron Job...
SlotKit · 2026-06-01 · via DEV Community

SlotKit

One of the most requested features in any booking platform is simple:
"Send me a reminder before my appointment."

It sounds trivial. But when you start thinking about the infrastructure —
scheduled jobs, email queues, timezone handling — it gets complex fast.

Here's how I built automated booking reminders in Next.js 15 using
Vercel Cron Jobs and Resend, with zero additional infrastructure.


The problem with scheduled tasks in Next.js

Next.js is a request-driven framework. It handles HTTP requests — it doesn't
natively run background jobs on a schedule.

Traditional solutions involve:

  • A separate cron server (more infrastructure to manage)
  • A queue service like BullMQ or AWS SQS (overkill for most projects)
  • A third-party scheduler service (another paid dependency)

Vercel Cron Jobs solve this cleanly. They're available on all plans
including Hobby, configured in a single JSON file, and trigger your
existing API routes on a schedule.


Setting up Vercel Cron Jobs

Create a vercel.json in the root of your project:

{
  "crons": [
    {
      "path": "/api/cron/reminders",
      "schedule": "0 8 * * *"
    }
  ]
}

0 8 * * * runs every day at 8:00 AM UTC. That's it — no additional
setup, no dashboard configuration beyond deploying your app.


Securing the endpoint

Vercel sends requests to your cron endpoint from their infrastructure.
You need to verify these requests come from Vercel and not from a random
external caller.

The standard approach: a shared secret in an Authorization header.

export async function GET(request: NextRequest) {
  const authHeader = request.headers.get('authorization')

  if (authHeader !== `Bearer ${process.env.CRON_SECRET}`) {
    return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
  }

  // proceed with the job
}

Set CRON_SECRET in your Vercel environment variables. Generate a
secure value with:

node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"


Finding tomorrow's bookings

The reminder logic is straightforward: find all confirmed bookings
that start tomorrow, then send an email for each one.

const tomorrow = new Date()
tomorrow.setDate(tomorrow.getDate() + 1)
tomorrow.setHours(0, 0, 0, 0)

const tomorrowEnd = new Date(tomorrow)
tomorrowEnd.setHours(23, 59, 59, 999)

const upcomingBookings = await db
  .select()
  .from(bookings)
  .where(
    and(
      eq(bookings.status, 'confirmed'),
      gte(bookings.startTime, tomorrow),
      lte(bookings.startTime, tomorrowEnd)
    )
  )

Two things worth noting:

Only confirmed bookings. Pending bookings (waiting for payment
confirmation) are excluded. You don't want to remind someone about
an appointment that isn't actually confirmed yet.

Midnight boundaries. Setting setHours(0, 0, 0, 0) and
setHours(23, 59, 59, 999) ensures you capture the full day
regardless of what time the cron runs.


Sending the reminder email with Resend

For each booking, we fetch the related service, resource, and tenant
data, then send the reminder:

for (const booking of upcomingBookings) {
  try {
    const [service] = await db.select().from(services)
      .where(eq(services.id, booking.serviceId)).limit(1)

    const [resource] = await db.select().from(resources)
      .where(eq(resources.id, booking.resourceId)).limit(1)

    const [tenant] = await db.select().from(tenants)
      .where(eq(tenants.id, booking.tenantId)).limit(1)

    if (!service || !resource || !tenant) continue

    const html = await render(
      BookingReminderEmail({
        customerName: booking.customerName,
        businessName: tenant.name,
        serviceName: service.name,
        resourceName: resource.name,
        date: formatDate(booking.startTime),
        startTime: formatTime(booking.startTime),
        endTime: formatTime(booking.endTime),
      })
    )

    await resend.emails.send({
      from: process.env.RESEND_FROM_EMAIL!,
      to: booking.customerEmail,
      subject: `Reminder: your appointment tomorrow at ${tenant.name}`,
      html,
    })

    sent++
  } catch (error) {
    console.error(`Failed to send reminder for booking ${booking.id}:`, error)
    failed++
  }
}

return NextResponse.json({ success: true, sent, failed, total: upcomingBookings.length })

The try/catch per booking is intentional — if one email fails, the
loop continues and sends the remaining reminders. A single Resend
error shouldn't block everyone else's reminders.


The email template

Using React Email for the reminder template keeps things consistent
with the rest of the email system:

export function BookingReminderEmail({
  customerName,
  businessName,
  serviceName,
  resourceName,
  date,
  startTime,
  endTime,
}: BookingReminderEmailProps) {
  return (
    <Html>
      <Preview>Reminder: your appointment tomorrow at {businessName}</Preview>
      <Body>
        <Container>
          <Heading>Reminder: appointment tomorrow 🗓️</Heading>
          <Text>
            Hi {customerName}, this is a reminder for your appointment tomorrow.
          </Text>
          <Section>
            <Text><strong>Service:</strong> {serviceName}</Text>
            <Text><strong>With:</strong> {resourceName}</Text>
            <Text><strong>Date:</strong> {date}</Text>
            <Text><strong>Time:</strong> {startTime} – {endTime}</Text>
          </Section>
        </Container>
      </Body>
    </Html>
  )
}


Testing locally

Vercel Cron Jobs only trigger in production. For local development,
call the endpoint manually with the cron secret:

PowerShell:

$secret = (Get-Content .env.local | Select-String "CRON_SECRET").ToString().Split("=")[1]
Invoke-RestMethod -Uri "http://localhost:3000/api/cron/reminders" `
  -Headers @{Authorization="Bearer $secret"}

curl:

curl -H "Authorization: Bearer YOUR_CRON_SECRET" \
  http://localhost:3000/api/cron/reminders

The endpoint returns the count of sent and failed emails — useful
for verifying everything worked correctly.


What I learned

Vercel Cron Jobs are underrated. For most booking or scheduling
use cases, they're all you need. No queue infrastructure, no worker
processes, no additional cost.

Fail per item, not per batch. The try/catch inside the loop
pattern is important. A single failed email shouldn't abort the
entire reminder run.

Test with real data. Insert a booking with startTime = tomorrow
directly in your database and verify the email arrives before deploying.
Cron bugs are annoying to debug in production.


This reminder system is part of SlotKit — a production-ready
booking SaaS template for agencies built on Next.js 15, Supabase,
Stripe, and Resend.

If you're building booking functionality for clients and tired of
rebuilding the same infrastructure: slotkit.dev

Happy to answer questions in the comments.