v1

latestOpenAPI 3.0.32026-07-26172157253.6 KB
Client

Send raw HTML email

Send a custom HTML email to one or more recipients. Requires user authentication.

post/api/email/send-raw

Request body

subjectstring required

Email subject line

htmlstring required

HTML content of the email body

fromstring

Custom sender name (uses default if not provided)

replyTostring email

Reply-to email address

Example request

{
  "to": "user@example.com",
  "subject": "Welcome to our platform",
  "html": "<h1>Welcome!</h1><p>Thank you for joining us.</p>",
  "from": "My App",
  "replyTo": "support@example.com"
}

Response

Email sent successfully

SendEmailResponse required

Empty object on success - extend with optional fields later if needed