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

# Exports

> Available exports for the Burner Phone resource

## Client Exports

### SendMessage

Sends a message to a contact and automatically registers that contact in the local contact history if it does not already exist.

```lua theme={null}
exports['projectx-burner']:SendMessage(sender, message, duration)
```

<ParamField path="sender" type="string" required>
  Contact name or identifier
</ParamField>

<ParamField path="message" type="string" required>
  Message content to display
</ParamField>

<ParamField path="duration" type="number">
  Message display duration in milliseconds
</ParamField>

**Example**

```lua theme={null}
exports['projectx-burner']:SendMessage("Unknown Number", "Meet me at the docks.", 5000)
```

***

### OpenContact

Opens the message history for a specific contact and displays all previously received messages from that contact.

```lua theme={null}
exports['projectx-burner']:OpenContact(contact)
```

<ParamField path="contact" type="string" required>
  The contact name to open
</ParamField>

**Example**

```lua theme={null}
exports['projectx-burner']:OpenContact("Unknown Number")
```
