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

# Send an email

> Send an email using the provided template and variables



## OpenAPI

````yaml post /email
openapi: 3.0.3
info:
  title: Xem API
  version: '1.0'
  description: Comprehensive API server for Xem email marketing platform
  contact: {}
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
servers:
  - url: https://api.xem.email/api/v1
    description: Production server
  - url: http://localhost:8080/api/v1
    description: Development server
security: []
tags:
  - name: Authentication
    description: User authentication and authorization endpoints
  - name: Teams
    description: Team management and collaboration features
  - name: Campaigns
    description: Email campaign creation, management, and tracking
  - name: Analytics
    description: Campaign analytics, audience insights, and performance metrics
  - name: Contacts
    description: Contact management and mailing list operations
  - name: Templates
    description: Email template management and customization
  - name: Automations
    description: Email automation workflows and triggers
  - name: SMTP
    description: SMTP configuration and email delivery settings
  - name: IMAP
    description: IMAP configuration for email inbox management
  - name: Webhooks
    description: Webhook management for real-time event notifications
  - name: Files
    description: File upload and management for attachments and media
  - name: Domains
    description: Domain management for email authentication
  - name: API Keys
    description: API key management for programmatic access
paths:
  /email:
    post:
      tags:
        - Email
      summary: Send an email
      description: Send an email using the provided template and variables
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/internal_handlers.SendEmailRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    internal_handlers.SendEmailRequest:
      type: object
      required:
        - data
        - to
      properties:
        bcc:
          type: string
        cc:
          type: string
        data:
          type: array
          items:
            type: integer
        html:
          type: string
        provider:
          type: string
          enum:
            - CUSTOM
            - GMAIL
            - OUTLOOK
            - AMAZON
        replyTo:
          type: string
        scheduleAt:
          type: string
        subject:
          type: string
        templateId:
          type: string
        test:
          type: boolean
        to:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Enter the token with the `Bearer: ` prefix, e.g. "Bearer abcde12345".'
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key for programmatic access

````