v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
EmailAccount

Send email via email account V3

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).

patch/api/v3/emailAccounts/{id}/actions/sendEmail

Path parameters

idstring required

Request body

tostring required

Recipient email address.

namestring

Recipient name.

ccstring[]

List of CC email addresses.

bccstring[]

List of BCC email addresses.

subjectstring required

Subject of the email.

bodystring required

Email body content. Can contain HTML.

addSignatureboolean

Whether to automatically append the signature from email account, project settings, or company settings.

Example request

{
  "to": "recipient@example.com",
  "name": "John Doe",
  "subject": "Hello from Xentral",
  "attachments": [
    {
      "fileName": "document.pdf"
    }
  ]
}

Response

No Content