Use Case: Autonomous Sales Development

Email infrastructure purpose-built for AI SDRs.

Stop getting AI SDR accounts suspended on human Gmail workspaces. Provision real programmatic agent inboxes in milliseconds with automatic conversation threading.

01

Dedicated Agent Inboxes

Give each AI sales persona an isolated address (e.g. alex.sdr@gork.email) without complex OAuth configurations.

02

Multi-Turn Thread Memory

Automatic header reconstruction ensures prospect follow-ups always stay within the same email chain.

03

Real-Time Webhook Triggers

Wake up your LLM prompt loop the millisecond an interested lead replies to schedule a demo.

Autonomous SDR Orchestration Code

ai-sdr-workflow.ts
1import { GorkClient } from "@gork/sdk"
2
3const gork = new GorkClient({ apiKey: process.env.GORK_API_KEY })
4
5// 1. Provision dedicated SDR inbox
6const sdrInbox = await gork.inboxes.create({
7 username: "alex-outreach",
8 name: "Alex - Enterprise SDR"
9})
10
11// 2. Dispatch personalized cold outreach email
12await gork.messages.send({
13 inboxId: sdrInbox.id,
14 to: ["vp.eng@targetcorp.com"],
15 subject: "Optimizing GPU orchestration costs",
16 text: "Hi Dave, noticed your team is expanding your inference clusters..."
17})