LettermintLettermint
  • Knowledge base
  • Community
  • Changelog
  • Support
  • Documentation
  • Sending API
  • Team API
Getting started
Guides
Platform
    Projects & Routes
    Emails
      Sending test emailsIdempotencyTagsInline ImagesData RetentionLimitations
      Tracking
    Domains
    Webhooks
    Teams
Resources
Emails

Tags

What are tags?

Tags are labels you can attach to emails to organize and categorize them. They help you:

  • Track campaigns: Group emails by marketing campaigns or newsletters
  • Organize by department: Separate transactional emails by department (billing, support, etc.)
  • Filter messages: Quickly find specific types of emails in your dashboard
  • Analyze performance: Compare metrics across different email categories

Adding tags to emails

Via API

Add a tag field to your API request:

Via SMTP

When using SMTP, add the X-LM-Tag header to your email:

Tag format requirements

ConstraintValue
Max length255 characters
Allowed charactersa-z, A-Z, 0-9, _, -, space
Pattern^[a-zA-Z0-9_-]+(?:\s[a-zA-Z0-9_-]+)*$

Spaces are allowed between words but not at the beginning or end of a tag.

Valid examples: newsletter, order-confirmation, Order Confirmation, invoice_2024

Invalid examples: Newsletter (leading space), invoice@2024 (@ not allowed), order.confirmation (. not allowed)

Naming conventions

Use consistent patterns to keep tags organized and machine-readable:

  • Use prefixes by category: billing-invoice, support-ticket, marketing-promo
  • Include dates for campaigns: newsletter-2025-01, black-friday-2024
  • Keep tags lowercase: Makes filtering and analytics queries simpler

Filtering messages

Filter by specific tag

Retrieve all messages with a specific tag:

An example of how to filter on tags.

Team isolation

Tags are isolated to your team:

  • Each team has its own set of tags
  • Tags with the same name can exist across different teams
  • Switching teams shows only that team's tags

Tags are created automatically when you first use them. There's no need to pre-create tags before sending emails.

Tags are included in webhook event payloads for all message events. Use them to correlate webhook data with your systems.

Limitations

  • One tag per message: Each email can have only one tag
  • No tag updates: Once an email is sent, its tag cannot be changed
  • Automatic cleanup: Unused tags (with no associated messages) may be removed during message cleanup

Related

  • Webhook events — Tags are included in all message event payloads
  • Metadata — Attach custom key-value data to messages
Last modified on May 11, 2026
IdempotencyInline Images
On this page
  • What are tags?
  • Adding tags to emails
    • Via API
    • Via SMTP
  • Tag format requirements
  • Naming conventions
  • Filtering messages
    • Filter by specific tag
    • Team isolation
  • Limitations
  • Related
await lettermint.email .from('John Doe <john@yourdomain.com>') .to('recipient@example.com') .subject('Welcome to our newsletter') .text('Thank you for subscribing!') .tag('newsletter') .send();
await transporter.sendMail({ from: 'sender@yourdomain.com', to: 'recipient@example.com', subject: 'Order Confirmation', text: 'Your order has been confirmed.', headers: { 'X-LM-Tag': 'order-confirmation' } });