openapi: 3.0.1 info: title: Postmark Account Activate Email API description: 'Postmark makes sending and receiving email incredibly easy. The Account-level API allows users to configure all Servers, Domains, and Sender Signatures associated with an Account. ' version: 0.9.0 servers: - url: //api.postmarkapp.com/ tags: - name: Email paths: /email: post: tags: - Email summary: Postmark Send a single email requestBody: content: {} responses: '200': description: Successful response content: application/json: {} /email/batch: post: tags: - Email summary: Postmark Send a batch of emails requestBody: content: {} responses: '200': description: Successful response content: application/json: {} /email/batchWithTemplates: post: tags: - Email summary: Postmark Send a batch of email using templates. requestBody: content: {} responses: '200': description: Successful response content: application/json: {} /email/withTemplate: post: tags: - Email summary: Postmark Send an email using a Template requestBody: content: {} responses: '200': description: Successful response content: application/json: {}