---
title: "Send email (Netcore format)"
method: POST
path: "/v1s/nsend/"
tags: ["Engine — Send"]
---

# Send email (Netcore format)

`POST /v1s/nsend/`

Send an email using **Netcore v6** payload format. Identical flow to `/v1s/ssend`
except the incoming type is `netcore`. Content type keys differ:
`text/html` → `html`, `text/plain` → `plain`, `categories` → `tags`.

## Request body

- NetcorePayload
  - `personalizations` SendGridPersonalization[], required
    - `to` EmailAddress[], required
      - `email` string, email, required
      - `name` string
    - `cc` EmailAddress[]
      - `email` string, email, required
      - `name` string
    - `bcc` EmailAddress[]
      - `email` string, email, required
      - `name` string
    - `subject` string — Overrides top-level subject for this personalization.
  - `from` EmailAddress, required
    - `email` string, email, required
    - `name` string
  - `subject` string
  - `content` NetcoreContent[]
    - `type` 'html' | 'plain', required — `html` maps to `text/html`, `plain` maps to `text/plain`.
    - `value` string, required
  - `tags` string[] — Equivalent to SendGrid `categories`.
  - `settings` object
    - `open_track` boolean
    - `click_track` boolean

## Response `200`

Email relayed successfully.

- EngineSuccessResponse
  - `success` string
  - `req_id` string — Unique request ID: `{rand6}-{clusterID}-{providerID}-{timestamp}-{sequence}-{clientID}-{routeID}`.
  - `message` string

## Other responses

- `400` — Invalid request (empty body, invalid JSON, payload validation, transform error).
- `401` — API key missing or invalid.
- `403` — IP or domain restriction violation.
- `413` — Payload exceeds `max_request_body_size_mb`.
- `500` — Internal server error.
- `502` — Upstream provider returned an error.
- `504` — Upstream provider did not respond in time.

---

[API](https://skmtc.dev/netcorecloud/apis/email-api-v6.md) · [All operations](https://skmtc.dev/netcorecloud/apis/email-api-v6/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/netcorecloud/email-api-v6/revisions/73f83bc2eff8/schema)
