> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leadterra.co/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /v1/sdr/drafts/:draftId/send

> Send a draft reply through the SDR's connected Gmail.

Sends the draft via the SDR's Composio-connected Gmail. Pre-send guardrails check quality and block sending if the draft fails scoring.

```bash theme={null}
curl -X POST https://app.leadterra.co/v1/sdr/drafts/DRAFT_ID/send \
  -H "Authorization: Bearer sk_live_your_key"
```

## Request Body

<ParamField body="finalBodyHtml" type="string">
  Override the draft's HTML body before sending.
</ParamField>

<ParamField body="finalBodyText" type="string">
  Override the draft's plain text body before sending.
</ParamField>

<ParamField body="additionalCc" type="string[]">
  Additional CC email addresses.
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "messageId": "gmail_message_id",
    "guardrails": {
      "blocked": false,
      "issues": [],
      "scores": {
        "overall": 0.92,
        "readability": 0.88,
        "personalization": 0.95,
        "linkQuality": 0.90
      }
    }
  }
}
```

If guardrails block the send, the response is `422` with the guardrails object detailing the issues.
