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

# SignUp Email Notification

> Send notification email when a new user signs up

# SignUp Email Notification

Sends a transactional email to `notifications@searchcompany.ai` via Loops.so when a new user signs up.

## Endpoint

```http theme={null}
POST /webhooks/notifications/new-user-signup
```

## Features

* **Async/Non-blocking**: Returns immediately, email sends in background
* **Template ID**: `cmkage83y0h340i03ba18pjww`

## Request Body

| Field        | Type   | Required | Description           |
| ------------ | ------ | -------- | --------------------- |
| `user_email` | string | Yes      | Email of the new user |
| `user_name`  | string | No       | Name of the new user  |
| `org_name`   | string | No       | Organization name     |
| `org_slug`   | string | No       | Organization slug     |

## Example Request

```json theme={null}
{
  "user_email": "newuser@example.com",
  "user_name": "John Doe",
  "org_name": "Acme Corp",
  "org_slug": "acme-corp-123456"
}
```

## Example Response

```json theme={null}
{
  "status": "queued",
  "message": "New user signup notification queued",
  "template_id": "cmkage83y0h340i03ba18pjww"
}
```

## Internal Usage

```python theme={null}
from src.app.webhooks.notifications.routes import notify_new_signup

await notify_new_signup(
    user_email="user@example.com",
    user_name="John Doe",
    org_name="Acme Corp",
    org_slug="acme-corp-123456"
)
```
