Buildscratch Docs
  1. Email
Buildscratch Docs
  • Introduction
  • Managed Authentications
    • Introduction
    • Internal Parties
      • Register Account
      • Authenticate
    • External Parties
      • Register External
      • OAuth2 Token
      • OAuth2 Authenticate
  • Utilities
    • Introduction
    • Email
      • Introduction
      • Send Email
        POST
      • Create Templates
        POST
      • Update Templates
        PUT
  • Services
    • Reservations
      • Availability
  • Artifical Inteligence
    • Introduction
  1. Email

Send Email

Developing
POST
/utilities/email/conversation/push

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://prod.your-api-server.com/utilities/email/conversation/push' \
--header 'Content-Type: application/json' \
--data-raw '{
    "recipients": [],
    "cc": [],
    "bcc": [],
    "subject": "",
    "message": {
        "type": "html",
        "content": "<div>Hello, my name is {{name}}</div>",
        "metadata": {
            "name": "Buildscratch"
        }
    }
}'
Response Response Example
{}
Modified at 2026-02-05 20:12:53
Previous
Introduction
Next
Create Templates
Built with