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

# Contact

> Send enquiries directly to the team via the public contact endpoint.

## POST `/api/contact`

* **Auth** – none.
* **Body**

```json theme={null}
{
  "firstName": "Pat",
  "lastName": "Lee",
  "email": "pat@example.com",
  "body": "I would like a demo."
}
```

* **Validation** – all fields are required, emails must match `/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/`.
* **Side effects** – Browsary emails the payload to `process.env.SMTP_EMAIL` via the configured mail transporter.
* **Response** – `{ "status": "ok" }`.

Use this endpoint when you want to expose a public contact form or feedback widget that pipes straight into the Browsary inbox.
