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

# send • AI Agent SDK

> send: Deliver a message to a symbolic target.

# send

<div className="flex items-center gap-2">
  <Badge color="blue">Async</Badge>
  <Badge color="purple">Method</Badge>
</div>

> This is a method of the [**OutboundMessengerProtocol**](../classes/OutboundMessengerProtocol) class in the [**protocols**](../modules/protocols) module.

Deliver a message to a symbolic target.

## Signature

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
async def send(target: str, text: str) -> 'DeliveryResult'
```

## Parameters

<ParamField query="target" type="str" required={true}>
  Symbolic target token ("origin", "\<platform>", "\<platform>:\<chat\_id>\[:\<thread\_id>]", or a friendly alias).
</ParamField>

<ParamField query="text" type="str" required={true}>
  The message text to send.
</ParamField>

### Returns

<ResponseField name="Returns" type="'DeliveryResult'">
  class:`DeliveryResult` describing the outcome.
</ResponseField>

## Used By

* [`AgentTeam.run_all_tasks`](../functions/AgentTeam-run_all_tasks)

## Source

<Card title="View on GitHub" icon="github" href="https://github.com/MervinPraison/PraisonAI/blob/main/src/praisonai-agents/praisonaiagents/gateway/protocols.py#L2547">
  `praisonaiagents/gateway/protocols.py` at line 2547
</Card>
