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

---
id: f126be3c-cb35-4fa1-83a8-5cd9ada0f658
---

# Send a transactional email

> Asynchronously send a transactional email. Returns the status of the email send with a statusId that can be used to continuously query for the status using the Email Send Status API.

export const ScopesList = ({scopes = [], description = "This API requires one of the following scopes:"}) => {
  if (!scopes || scopes.length === 0) {
    return null;
  }
  const sortedScopes = scopes.sort((a, b) => a.localeCompare(b));
  return <div>
      <div className="text-sm mb-2">{description}</div>
      <div>
        {sortedScopes.map((scope, index) => <div key={index}>
            <code>
              <span className="text-xs">{scope}</span>
            </code>
          </div>)}
      </div>
    </div>;
};

export const SupportedProducts = ({marketing, sales, service, cms, data, commerce, crm, marketingLevel, salesLevel, serviceLevel, cmsLevel, dataLevel, commerceLevel, crmLevel}) => {
  const translations = {
    description: "Requires one of the following products or higher.",
    productNames: {
      marketing: "Marketing Hub",
      sales: "Sales Hub",
      service: "Service Hub",
      cms: "Content Hub",
      data: "Data Hub",
      commerce: "Revenue Hub",
      crm: "Smart CRM"
    },
    tiers: {
      free: "Free",
      starter: "Starter",
      professional: "Professional",
      enterprise: "Enterprise"
    }
  };
  const translateTier = tier => {
    if (!tier) return '';
    const lowerTier = tier.toLowerCase();
    return translations.tiers[lowerTier] || tier;
  };
  const products = [{
    name: marketing ? translations.productNames.marketing : '',
    level: translateTier(marketingLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/MarketingHub.svg",
    alt: "Marketing Hub"
  }, {
    name: sales ? translations.productNames.sales : '',
    level: translateTier(salesLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/SalesHub.svg",
    alt: "Sales Hub"
  }, {
    name: service ? translations.productNames.service : '',
    level: translateTier(serviceLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/ServiceHub.svg",
    alt: "Service Hub"
  }, {
    name: cms ? translations.productNames.cms : '',
    level: translateTier(cmsLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/ContentHub.svg",
    alt: "Content Hub"
  }, {
    name: data ? translations.productNames.data : '',
    level: translateTier(dataLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/DataHub.svg",
    alt: "Data Hub"
  }, {
    name: commerce ? translations.productNames.commerce : '',
    level: translateTier(commerceLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base/subscription_key_icons/commerce_icon.svg",
    alt: "Revenue Hub"
  }, {
    name: crm ? translations.productNames.crm : '',
    level: translateTier(crmLevel),
    icon: "https://www.hubspot.com/hubfs/Knowledge_Base_2023-24-25/developer/icons/SmartCRM.svg",
    alt: "Smart CRM"
  }].filter(product => product.name && product.level);
  if (products.length === 0) return null;
  return <div>
      <div className="text-sm mb-2">{translations.description}</div>
      <div className={`grid ${products.length === 1 ? 'grid-cols-1' : 'grid-cols-2'} gap-1.5`}>
        {products.map((product, index) => <div key={index} style={{
    display: 'flex',
    alignItems: 'center'
  }}>
            <img src={product.icon} alt={product.alt} className="w-3.5 h-3.5 mr-1.5 mt-2.5 mb-2.5 flex-shrink-0 align-middle" />
            <span className="font-medium mr-1 text-sm">{product.name} -</span>
            <span className="text-sm">{product.level}</span>
          </div>)}
      </div>
    </div>;
};

<AccordionGroup>
  <Accordion title="Supported products" defaultOpen="true" icon="cubes">
    <SupportedProducts marketing={true} sales={true} service={true} cms={true} marketingLevel="PROFESSIONAL" salesLevel="FREE" serviceLevel="FREE" cmsLevel="FREE" />
  </Accordion>

  <Accordion title="Required Scopes" icon="key">
    <ScopesList
      scopes={[
  'transactional-email'
]}
    />
  </Accordion>
</AccordionGroup>


## OpenAPI

````yaml specs/2026-03/marketing-transactional-single-send-v2026-03.json POST /marketing/transactional/2026-03/single-email/send
openapi: 3.0.1
info:
  title: Transactional Single Send
  description: Basepom for all HubSpot Projects
  version: 2026-03
  x-hubspot-product-tier-requirements:
    marketing: PROFESSIONAL
    sales: FREE
    service: FREE
    cms: FREE
    commerce: FREE
    crmHub: FREE
    dataHub: FREE
  x-hubspot-api-use-case: >-
    After a customer converts or purchases a product from your business, you
    want to send them a receipt of their transaction.
  x-hubspot-introduction: >-
    Use the transactional email API to send emails from a dedicated IP address
    to your contacts for essential business transactions, including account
    updates or terms of service changes.
servers:
  - url: https://api.hubapi.com
security: []
tags:
  - name: Send transactional email
  - name: SMTP Tokens
paths:
  /marketing/transactional/2026-03/single-email/send:
    post:
      tags:
        - Send transactional email
      summary: Send a single send transactional email asynchronously.
      description: >-
        Asynchronously send a transactional email. Returns the status of the
        email send with a statusId that can be used to continuously query for
        the status using the Email Send Status API.
      operationId: post-/marketing/transactional/2026-03/single-email/send_sendEmail
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicSingleSendRequestEgg'
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmailSendStatusView'
        default:
          $ref: '#/components/responses/Error'
          description: ''
      security:
        - oauth2:
            - transactional-email
components:
  schemas:
    PublicSingleSendRequestEgg:
      required:
        - contactProperties
        - customProperties
        - emailId
        - message
      type: object
      properties:
        contactProperties:
          type: object
          additionalProperties:
            type: string
          description: >-
            The contactProperties field is a map of contact property values.
            Each contact property value contains a name and value property. Each
            property will get set on the contact record and will be visible in
            the template under {{ contact.NAME }}. Use these properties when you
            want to set a contact property while you’re sending the email. For
            example, when sending a reciept you may want to set a last_paid_date
            property, as the sending of the receipt will have information about
            the last payment.
        customProperties:
          type: object
          additionalProperties:
            type: object
            properties: {}
          description: >-
            The customProperties field is a map of property values. Each
            property value contains a name and value property. Each property
            will be visible in the template under {{ custom.NAME }}.

            Note: Custom properties do not currently support arrays. To provide
            a listing in an email, one workaround is to build an HTML list
            (either with tables or ul) and specify it as a custom property.
        emailId:
          type: integer
          description: >-
            The content ID for the transactional email, which can be found in
            email tool UI.
          format: int64
        message:
          $ref: '#/components/schemas/PublicSingleSendEmail'
    EmailSendStatusView:
      required:
        - status
        - statusId
      type: object
      properties:
        completedAt:
          type: string
          description: Time when the send was completed.
          format: date-time
        eventId:
          $ref: '#/components/schemas/EventIdView'
        message:
          type: string
          description: >-
            A human readable message describing the error along with remediation
            steps where appropriate
        requestedAt:
          type: string
          description: Time when the send was requested.
          format: date-time
        sendResult:
          type: string
          description: Result of the send.
          enum:
            - ADDRESS_LIST_BOMBED
            - ADDRESS_ONLY_ACCEPTED_ON_PROD
            - ADDRESS_OPTED_OUT
            - ATTACHMENT_DOWNLOAD_QUEUE_FULL
            - BLOCKED_ADDRESS
            - BLOCKED_DOMAIN
            - BRAND_RECIPIENT_FATIGUE_SUPPRESSED
            - CAMPAIGN_CANCELLED
            - CANCELLED_ABUSE
            - CONTACT_VIEW_PERMISSION
            - CORRUPT_INPUT
            - EMAIL_DISABLED
            - EMAIL_UNCONFIRMED
            - GDPR_DOI_ENABLED
            - GRAYMAIL_SUPPRESSED
            - HUBL_LIMIT_EXCEEDED
            - IDEMPOTENT_FAIL
            - IDEMPOTENT_IGNORE
            - INVALID_APP_ID_ATTRIBUTION
            - INVALID_FROM_ADDRESS
            - INVALID_TO_ADDRESS
            - LOW_CONTACT_QUALITY_SCORE
            - MARKETING_ACTIVATION_DISALLOWED
            - MISSING_CONTENT
            - MISSING_REQUIRED_PARAMETER
            - MISSING_TEMPLATE_PROPERTIES
            - MTA_IGNORE
            - NON_MARKETABLE_CONTACT
            - PORTAL_AUTHENTICATION_FAILURE
            - PORTAL_EXPIRED
            - PORTAL_MISSING_MARKETING_SCOPE
            - PORTAL_NOT_AUTHORIZED_FOR_APPLICATION
            - PORTAL_OVER_LIMIT
            - PORTAL_SUSPENDED
            - PREVIOUS_SPAM
            - PREVIOUSLY_BOUNCED
            - PREVIOUSLY_UNSUBSCRIBED_BRAND
            - PREVIOUSLY_UNSUBSCRIBED_BUSINESS_UNIT
            - PREVIOUSLY_UNSUBSCRIBED_MESSAGE
            - PREVIOUSLY_UNSUBSCRIBED_PORTAL
            - QUARANTINED_ADDRESS
            - QUEUED
            - RECIPIENT_FATIGUE_SUPPRESSED
            - SENT
            - TEMPLATE_RENDER_EXCEPTION
            - THROTTLED
            - TOO_MANY_RECIPIENTS
            - UBB_GOVERNANCE_MISSING
            - UNCONFIGURED_SENDING_DOMAIN
            - UNDELIVERABLE
            - VALIDATION_FAILED
        startedAt:
          type: string
          description: Time when the send began processing.
          format: date-time
        status:
          type: string
          description: Status of the send request.
          enum:
            - CANCELED
            - COMPLETE
            - PENDING
            - PROCESSING
        statusId:
          type: string
          description: Identifier used to query the status of the send.
    PublicSingleSendEmail:
      required:
        - bcc
        - cc
        - replyTo
      type: object
      properties:
        bcc:
          type: array
          description: List of email addresses to send as Bcc.
          items:
            type: string
        cc:
          type: array
          description: List of email addresses to send as Cc.
          items:
            type: string
        from:
          type: string
          description: The From header for the email.
        replyTo:
          type: array
          description: List of Reply-To header values for the email.
          items:
            type: string
        sendId:
          type: string
          description: >-
            ID for a particular send. No more than one email will be sent per
            sendId.
        to:
          type: string
          description: The recipient of the email.
    EventIdView:
      required:
        - created
        - id
      type: object
      properties:
        created:
          type: string
          description: Time of event creation.
          format: date-time
        id:
          type: string
          description: Identifier of event.
          format: uuid
    Error:
      required:
        - category
        - correlationId
        - message
      type: object
      properties:
        category:
          type: string
          description: The error category
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: Context about the error condition
          example: >-
            {invalidPropertyName=[propertyValue], missingScopes=[scope1,
            scope2]}
        correlationId:
          type: string
          description: >-
            A unique identifier for the request. Include this value with any
            error reports or support tickets
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: further information about the error
          items:
            $ref: '#/components/schemas/ErrorDetail'
        links:
          type: object
          additionalProperties:
            type: string
          description: >-
            A map of link names to associated URIs containing documentation
            about the error or recommended remediation steps
        message:
          type: string
          description: >-
            A human readable message describing the error along with remediation
            steps where appropriate
          example: An error occurred
        subCategory:
          type: string
          description: >-
            A specific category that contains more specific detail about the
            error
      description: >-
        Represents an error response returned by the API when an operation
        fails. This component is used in various endpoints to provide detailed
        information about the error encountered.
      example:
        message: Invalid input (details will vary based on the error)
        correlationId: aeb5f871-7f07-4993-9211-075dc63e7cbf
        category: VALIDATION_ERROR
        links:
          knowledge-base: https://www.hubspot.com/products/service/knowledge-base
    ErrorDetail:
      required:
        - message
      type: object
      properties:
        code:
          type: string
          description: The status code associated with the error detail
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: Context about the error condition
          example: '{missingScopes=[scope1, scope2]}'
        in:
          type: string
          description: The name of the field or parameter in which the error was found.
        message:
          type: string
          description: >-
            A human readable message describing the error along with remediation
            steps where appropriate
        subCategory:
          type: string
          description: >-
            A specific category that contains more specific detail about the
            error
      description: >-
        Represents detailed information about an error that occurred in the API.
        This component is used to provide additional context and specifics about
        errors, typically as part of an error response.
  responses:
    Error:
      description: An error occurred.
      content:
        '*/*':
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.hubspot.com/oauth/authorize
          tokenUrl: https://api.hubapi.com/oauth/v1/token
          scopes:
            transactional-email: ''

````