Support Inbox
Auto-create tickets from customer emails. Route by subject, extract order IDs, and assign to teams.
// EventBridge handler
const ticket = await linear.createIssue({
title: email.subject,
description: email.text,
teamId: routeToTeam(email.from),
});
