{
  "paths": {
    "/email/": {
      "post": {
        "deprecated": false,
        "description": "Send an email",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "from": {
                    "type": "string",
                    "format": "email"
                  },
                  "to": {
                    "type": "string",
                    "format": "email",
                    "example": "user1@example.com"
                  },
                  "cc": {
                    "type": "string",
                    "format": "email",
                    "example": "user2@example.com"
                  },
                  "bcc": {
                    "type": "string",
                    "format": "email",
                    "example": "user3@example.com"
                  },
                  "replyTo": {
                    "type": "string",
                    "format": "email",
                    "example": "user4@example.com"
                  },
                  "subject": {
                    "type": "string",
                    "example": "Lorem ipsum title"
                  },
                  "text": {
                    "type": "string",
                    "example": "Lorem ipsum"
                  },
                  "html": {
                    "type": "string",
                    "format": "html",
                    "example": "<h1>Lorem ipsum</h1>"
                  }
                }
              }
            }
          }
        },
        "summary": "",
        "tags": [
          "Email"
        ]
      }
    }
  },
  "tags": [
    {
      "name": "Email"
    }
  ]
}
