LettermintLettermint
  • Knowledge base
  • Community
  • Changelog
  • Support
  • Documentation
  • Sending API
  • Team API
  • MCP server
Get started
Send email
Receive email
Manage
    Handle API tokens securely
    Projects and routes
    Domains
    Webhooks
      IntroductionWebhook eventsWebhook signatures
    Teams
Resources
Webhooks

Webhooks

Use webhooks to receive an HTTP POST request when a Lettermint event occurs. A webhook removes the need to poll the Team API for delivery updates.

When to use webhooks

ApproachHow it worksBest for
PollingYour server requests updates on a schedule.Scheduled reports and occasional checks.
WebhooksLettermint sends each selected event to your endpoint.Delivery handlers and event-driven workflows.

If your system processes bounce or complaint emails, use bounce and complaint forwarding. You can use forwarding and webhooks together.

Common use cases:

  • Bounce handling: Remove invalid addresses from a mailing list.
  • Delivery confirmation: Update your database after delivery.
  • Engagement tracking: Start a workflow after a supported open or click.
  • Complaint management: Stop email to recipients who report spam.
  • Suppression synchronization: Copy suppression changes to another system.

Quick start

1. Create a webhook in the dashboard

  1. Go to Dashboard → Webhooks.
An overview of your route's webhooks in the dashboard
  1. Click Create webhook
The modal to create a webhook in the dashboard
  1. Enter your webhook details:

    • Name: e.g., "Production Events"
    • URL: your HTTPS endpoint (e.g., https://api.example.com/webhooks/lettermint)
    • Scope: select all projects, one or more projects, or one or more routes
    • Events: select the event types you want to receive
    • Include machine events: off by default; enable it only if you want security scanner, preview, and generic bot tracking observations. Supported privacy opens do not need this option.
    • Enabled: keep on to start receiving events
  2. Save. Your webhook is now active.

Webhook details in the dashboard

2. Send a test delivery

From the webhook details page, click Test Webhook. You should receive a payload like this:

Code
{ "id": "test-7f9c8e2a-1b3d-4f6e-b7d2-5c9f3a7e8b0c", "event": "webhook.test", "timestamp": "2025-08-08T20:14:12.000Z", "context": { "scope": "team", "team_id": "9f4e3d2c-1b0a-4987-9654-3210fedcba98", "project_id": null, "route_id": null }, "data": { "message": "This is a test webhook from Lettermint", "webhook_id": "9f9bf19c-4a2c-45f3-a6c7-bc937224ec5a", "timestamp": 1754921294 } }

You can use three webhook scopes:

  • Team: The webhook receives events from all current and future projects and routes.
  • Project: Select one or more projects. The webhook receives events from all current and future routes in those projects.
  • Route: Select one or more routes. The routes can be in different projects.

A webhook has one URL and one signing secret. The secret does not change when you change its targets.

Implementing a webhook endpoint

Here's a minimal endpoint that receives webhooks:

Always verify webhook signatures in production. Without verification, anyone who discovers your endpoint URL can send fake events. See Signed webhooks for implementation examples.

Best practices

Return 200 quickly Do heavy processing asynchronously. If your endpoint takes too long or returns an error, we'll retry the delivery.

Implement idempotency Use the event.id field to detect duplicate deliveries and prevent processing the same event twice:

Code
app.post('/webhooks/lettermint', async (req, res) => { const event = req.body // Check if we've already processed this event const alreadyProcessed = await db.webhookEvents.findUnique({ where: { eventId: event.id } }) if (alreadyProcessed) { return res.status(200).json({ received: true }) // Still return 200 } // Process the event await handleEvent(event) // Mark as processed await db.webhookEvents.create({ data: { eventId: event.id } }) res.status(200).json({ received: true }) })

Use the Test Webhook button in the dashboard to verify your endpoint is working before sending real emails.

HTTP headers

Every webhook delivery includes these headers:

HeaderDescription
X-Lettermint-SignatureHMAC-SHA256 signature for verification
X-Lettermint-EventEvent type (e.g., message.delivered)
X-Lettermint-DeliveryDelivery timestamp (Unix seconds)
X-Lettermint-AttemptRetry attempt number (1, 2, 3...)

See Signed webhooks for details on verifying the signature.

Webhook fields

FieldDescription
NameDisplay name for your webhook
URLHTTPS endpoint we POST to
ScopeAll projects, selected projects, or selected routes that send events to the webhook
EventsArray of event types to receive
Include machine eventsWhether message.opened and message.clicked webhooks include security scanner, preview, and generic bot observations. Supported privacy opens do not need this option. Disabled by default.
EnabledWhether the webhook is active
SecretHMAC secret for signature verification (rotatable)
DeliveriesRecent delivery attempts with status, response, and timing

Create multiple webhooks when different systems need different event sets. Use one webhook with multiple targets when one system processes events from selected projects or routes.

Delivery and retries

We retry failed webhook deliveries with exponential backoff. A delivery fails if your endpoint returns a non-2xx status or times out (30 seconds).

Retry schedule (12 total attempts: 1 initial attempt + 11 automatic retries):

AttemptDelay after previous
1Immediate
21 minute
32 minutes
45 minutes
510 minutes
610 minutes
715 minutes
830 minutes
91 hour
102 hours
114 hours
126 hours

This schedule spans roughly 14 hours from the initial delivery attempt to the final automatic retry.

After all retries are exhausted, the delivery is marked as failed. You can see all delivery attempts in the dashboard by clicking on your webhook.

Webhook delivery list showing status, response code, attempt count, and next retry time.

Troubleshooting

Webhook is disabled

Problem: No events are being delivered

Solution: Check that the webhook's Enabled toggle is on. Disabled webhooks won't send any deliveries.

No deliveries appear

Problem: Expected events aren't showing up

Solutions:

  • Use the Test Webhook button to verify your endpoint is reachable
  • Confirm your endpoint returns a 2xx status code
  • Check your server logs for incoming requests
  • Verify that the webhook scope includes the route and that the webhook uses the correct events

Repeated retries

Problem: The same event keeps being retried

Solutions:

  • Your endpoint must return 200-299 status quickly (within 30 seconds)
  • Move heavy processing to a background job and return 200 immediately
  • Implement idempotency using event.id to handle duplicate deliveries gracefully

Connection refused or timeout

Problem: Deliveries fail with connection errors

Solutions:

  • Ensure your endpoint is publicly accessible (not localhost)
  • Check firewall rules allow incoming HTTPS connections
  • Verify SSL/TLS certificate is valid and not expired
  • For local development, use a tunnel like ngrok

Signature verification fails

Problem: All webhooks are rejected as invalid

Solution: See the troubleshooting section in Signed webhooks.

Next steps

  • Signed webhooks: Verify webhook authenticity (required for production)
  • Webhook events: See all available event types and their payloads
Project limitsWebhook events
On this page
  • When to use webhooks
  • Quick start
    • 1. Create a webhook in the dashboard
    • 2. Send a test delivery
  • Implementing a webhook endpoint
    • Best practices
  • HTTP headers
  • Webhook fields
  • Delivery and retries
  • Troubleshooting
    • Webhook is disabled
    • No deliveries appear
    • Repeated retries
    • Connection refused or timeout
    • Signature verification fails
  • Next steps
JSON
const express = require('express') const app = express() app.use(express.json()) app.post('/webhooks/lettermint', (req, res) => { const event = req.body // TODO: Verify signature in production! // See: https://docs.lettermint.co/platform/webhooks/signing console.log('Received:', event.event, event.id) // Return 200 quickly - do heavy processing async res.status(200).json({ received: true }) }) app.listen(3000)
Javascript