> ## Documentation Index
> Fetch the complete documentation index at: https://docs.amisend.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send Email



## OpenAPI

````yaml api-reference/openapi.json post /emails
openapi: 3.0.0
info:
  title: OpenAPI Documentation Amisend
  version: 1.0.0
servers:
  - url: https://api.amisend.com
  - url: http://localhost:3015/api
security: []
tags: []
paths:
  /emails:
    post:
      tags:
        - Email
      summary: Send Email
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                from:
                  type: string
                  example: noreply@example.com
                to:
                  type: array
                  items:
                    type: string
                  example:
                    - user1@example.com
                    - user2@example.com
                subject:
                  type: string
                  example: Welcome!
                html:
                  type: string
                  example: <h1>Hello</h1>
                scheduledAt:
                  type: string
                  format: date-time
                  example: '2025-06-17T12:00:00Z'
                reply_to:
                  type: string
                  example: support@example.com
                attachments:
                  type: array
                  items:
                    type: object
      responses:
        '201':
          description: Emails queued successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Emails queued
                  id:
                    type: array
                    items:
                      type: string
        '401':
          description: Unauthorized
        '500':
          description: Error queuing emails
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````