Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Windows Tipps & SecurityNighthawk M7 Pro im Test: Flexibler, aber teurer 5G-Router(21.09.2026 um 10:30 Uhr)
Sichere ProgrammierungNeue Gmail-Funktion: So sparst du jetzt Zeit bei Einmalcodes(21.09.2026 um 10:00 Uhr)
Sichere ProgrammierungYour GIF exporter is fine — the container is the problem(21.09.2026 um 10:01 Uhr)
Sichere ProgrammierungCSS, Motion, or GSAP? I Choose by Who Owns the Animation(21.09.2026 um 10:12 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

How Email Threading Works for AI Agents

Three headers decide whether your agent's reply lands in the right conversation or starts a confusing new one: Message-ID, In-Reply-To, and References. By the time a thread is five messages deep, the References header carries five…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Three headers decide whether your agent's reply lands in the right conversation or starts a confusing new one: Message-ID, In-Reply-To, and References. By the time a thread is five messages deep, the References header carries five Message-ID values in order — a complete audit trail of the conversation that every mail client on earth uses to group messages.



Most developers never think about these headers because their mail client handles them. The moment you build an email agent, they become your problem. An agent that sends a follow-up and gets a reply three hours later needs to know which conversation that reply belongs to, what it last said, and what to do next. All of that context hangs off the threading chain.






The mechanics in one example



Every outbound email gets a globally unique Message-ID stamped by the sending server. When someone replies, their client adds two headers pointing back:




# The agent's outbound message
Message-ID: <[email protected]>
Subject: Following up on your demo request

# The recipient's reply
Message-ID: <[email protected]>
In-Reply-To: <[email protected]>
References: <[email protected]>

# The agent's follow-up
Message-ID: <[email protected]>
In-Reply-To: <[email protected]>
References: <[email protected]> <[email protected]>






In-Reply-To points at the message being answered directly; References accumulates the whole chain, oldest to newest. Gmail, Outlook, Apple Mail, and Thunderbird all thread on these headers. Subject-line matching is a fallback, not the mechanism.






Why subject matching betrays you



Plenty of agent implementations match replies by checking for Re: plus the original subject. It works in the demo and fails in production, for three documented reasons:





  1. Recipients edit subjects. "Q3 budget review" comes back as "Re: Q3 budget review — updated numbers attached."


  2. Subjects collide. Two prospects both received "Following up on your demo request." A reply to either matches both.


  3. Forwards lie. A recipient forwards the thread to a colleague who replies — same subject, completely different conversation context.



Headers reference specific Message-ID values, not human-editable text, so none of these break them. Match on headers first; fall back to subject only when headers are missing, which basically means very old or broken mail clients.






What the platform handles for you



With a Nylas Agent Account — the hosted-mailbox product currently in beta — you don't manage any of this by hand. The threading guide describes three send paths, all of which preserve the chain:





  • API sends: pass reply_to_message_id on POST /v3/grants/{grant_id}/messages/send, and the original message's Message-ID is fetched and In-Reply-To plus References are populated automatically.


  • SMTP submission (port 465 or 587): headers a mail client sets are preserved exactly as sent.


  • Inbound: full headers are stored on arrival. Pull them with fields=include_headers, or use fields=include_basic_headers to get just the three threading headers — a much smaller payload, since the full header set is often larger than the message body itself.



Even mixed traffic stays coherent: if the agent sends via the API and a human later replies through IMAP, the Threads API groups everything by the header chain, not by how each message was sent.






thread_id is your primary key



Rather than parsing headers, lean on the Threads API. Every message.created webhook includes a thread_id; one GET returns the conversation:




curl --request GET \
--url "https://api.us.nylas.com/v3/grants/<GRANT_ID>/threads/<THREAD_ID>" \
--header "Authorization: Bearer $NYLAS_API_KEY"






The thread object carries message_ids in order, participants, latest_message_received_date, a snippet, and routing metadata like unread and folders. The docs recommend treating thread_id as the primary key for conversation context — it's more stable than raw headers because it's platform-assigned and covers the whole conversation, not one message.



When the agent needs the actual words, not just the structure, reconstruct the conversation from the ID list:




// After receiving a message.created webhook:
const thread = await nylas.threads.find({
identifier: AGENT_GRANT_ID,
threadId: message.thread_id,
});

// thread.data.messageIds has the full conversation chain.
const messages = await Promise.all(
thread.data.messageIds.map((id) =>
nylas.messages.find({ identifier: AGENT_GRANT_ID, messageId: id }),
),
);






That ordered list of full messages is exactly the shape you want to feed an LLM as conversation history.






Connecting threads to what the agent was doing



Threading tells you which messages belong together. It can't tell you which task the conversation belongs to — that mapping lives in your application:





  1. On outbound: store the returned message_id and thread_id against your internal state — session ID, CRM deal, support ticket, workflow step.


  2. On inbound: when the webhook fires, look up thread_id. A hit means a reply to something the agent sent; restore context and continue. A miss means a brand-new conversation; classify and route it.



In code, the mapping is small:




// After sending:
threadState.set(sentMessage.threadId, {
sessionId: currentSession.id,
taskId: currentTask.id,
step: "awaiting_reply",
sentAt: Date.now(),
});

// On webhook:
const context = threadState.get(inboundMessage.threadId);
if (context) {
await resumeTask(context.taskId, inboundMessage); // reply — restore and continue
} else {
await triageNewMessage(inboundMessage); // new conversation — classify and route
}






Keep that mapping in a database, not in memory — email conversations span hours and days, and an in-memory map doesn't survive a restart. Two more edge cases from the docs worth designing for: a single outbound message can draw multiple replies (don't send duplicate responses), and dormant threads come back — someone may answer a three-week-old message after your state TTL expired. Decide upfront whether the agent re-reads the thread history, escalates to a human, or starts fresh.






Closing the loop: the in-thread reply



The send side mirrors the receive side. One field keeps the agent's response in the conversation:




curl --request POST \
--url "https://api.us.nylas.com/v3/grants/<GRANT_ID>/messages/send" \
--header "Authorization: Bearer $NYLAS_API_KEY" \
--header "Content-Type: application/json" \
--data '{
"reply_to_message_id": "<MESSAGE_ID>",
"to": [{ "email": "[email protected]" }],
"subject": "Re: Following up on your demo request",
"body": "Thanks for getting back to me, Alice. Here are the next steps..."
}'







Nylas sets In-Reply-To and References on the way out, the reply threads correctly in the recipient's client, and it also lands in the same thread in the agent's own mailbox — so the next webhook-triggered read sees a complete, ordered conversation.



Next step: wire up a message.created webhook, send yourself a message from an agent mailbox, reply from your phone, and log the thread_id round-trip. Once you've watched one conversation thread correctly end to end, the handle-replies recipe turns it into a production loop.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How Email Threading Works for AI Agents

Thematisch verwandte Begriffe: Email, Threading, Works, Agents · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-94036 | A security flaw has been discovered in D-Link DIR-X1860 and DIR-X1860Z u…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick