---
title: "Send email via email account V3"
method: PATCH
path: "/api/v3/emailAccounts/{id}/actions/sendEmail"
tags: ["EmailAccount"]
---

# Send email via email account V3

`PATCH /api/v3/emailAccounts/{id}/actions/sendEmail`

This endpoint requires the following scopes: `mailAcct:sendEmail`.

Send an email using an existing email account. Attachments are base64-encoded with a max size of 10MB each (25MB total).

## Path parameters

- `id` string, required

## Request body

- object
  - `to` string, required — Recipient email address.
  - `name` string — Recipient name.
  - `cc` string[] — List of CC email addresses.
  - `bcc` string[] — List of BCC email addresses.
  - `subject` string, required — Subject of the email.
  - `body` string, required — Email body content. Can contain HTML.
  - `addSignature` boolean — Whether to automatically append the signature from email account, project settings, or company settings.
  - `attachments` object[] — List of file attachments. Each attachment is base64-encoded. Max 10MB per attachment, 25MB total.
    - `fileName` string, required — File name of the attachment.
    - `fileContent` string, required — Base64-encoded file content. Max 10MB after decoding.

## Response `204`

No Content

## Other responses

- `400` — Failed validation
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests

---

[API](https://skmtc.net/xentral/apis/xentral-api.md) · [All operations](https://skmtc.net/xentral/apis/xentral-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xentral/xentral-api/revisions/8a27ba392442/schema)
