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

# Send a transactional email

> トランザクションEメールを非同期で送信します。Eメール送信ステータスAPIを使用してステータスを継続的に照会するのに使用できるstatusIdと一緒にEメール送信のステータスが返されます。

export const ScopesList = ({scopes = [], description = "この API には、次のいずれかのスコープが必要です。"}) => {
  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, marketingLevel, salesLevel, serviceLevel, cmsLevel}) => {
  const translations = {
    header: "サポートされる製品",
    description: "次のいずれかの製品またはそれ以上が必要です。",
    productNames: {
      marketing: "Marketing Hub",
      sales: "Sales Hub",
      service: "Service Hub",
      cms: "Content Hub"
    },
    tiers: {
      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://mintlify-assets.b-cdn.net/Icons/marketing-bolt.svg",
    alt: "Marketing Hub"
  }, {
    name: sales ? translations.productNames.sales : '',
    level: translateTier(salesLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/sales-star.svg",
    alt: "Sales Hub"
  }, {
    name: service ? translations.productNames.service : '',
    level: translateTier(serviceLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/service-heart.svg",
    alt: "Service Hub"
  }, {
    name: cms ? translations.productNames.cms : '',
    level: translateTier(cmsLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/content-play.svg",
    alt: "Content Hub"
  }].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: トランザクション1回送信
  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: 顧客が転換するか、貴社から製品を購入した後で、こちらからトランザクションの領収証を送信したいと考えています。
  x-hubspot-introduction: >-
    トランザクションEメールAPIを使用して、アカウントの更新やサービス利用規約の変更など、重要なビジネストランザクションに関して専用IPアドレスからコンタクトにEメールを送信します。
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: 1件の送信トランザクションEメールを非同期で送信します。
      description: >-
        トランザクションEメールを非同期で送信します。Eメール送信ステータスAPIを使用してステータスを継続的に照会するのに使用できるstatusIdと一緒にEメール送信のステータスが返されます。
      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: >-
            contactPropertiesフィールドはコンタクトプロパティー値の対応付けです。各コンタクトプロパティー値には名前と値プロパティーが含まれています。各プロパティーはコンタクトレコードで設定され、{{
            contact.NAME }}のテンプレートに表示されます。
            Eメールを送信する際にコンタクトプロパティーを設定する場合は、これらのプロパティーを使用します。例えば、領収書を送信する場合、領収書の送信には前回の支払いに関する情報が含まれるため、last_paid_dateプロパティーを設定する必要がある場合があります。
        customProperties:
          type: object
          additionalProperties:
            type: object
            properties: {}
          description: >-
            customPropertiesフィールドはプロパティー値の対応付けです。各プロパティー値には名前と値プロパティーが含まれています。各プロパティーは{{
            custom.NAME }}のテンプレートに表示されます。

            注：カスタムプロパティーでは現在のところ配列はサポートされていません。Eメールでリストを指定する場合の回避策の1つとして、HTMLリスト（テーブルまたはulを使用）を作成してカスタムプロパティーとして指定する方法があります。
        emailId:
          type: integer
          description: EメールツールのUIで確認できるトランザクションEメールのコンテンツID。
          format: int64
        message:
          $ref: '#/components/schemas/PublicSingleSendEmail'
    EmailSendStatusView:
      required:
        - status
        - statusId
      type: object
      properties:
        completedAt:
          type: string
          description: 送信が完了した日時。
          format: date-time
        eventId:
          $ref: '#/components/schemas/EventIdView'
        message:
          type: string
          description: エラーと修正手順（該当する場合）を記した、人が理解できるメッセージ
        requestedAt:
          type: string
          description: 送信がリクエストされた日時。
          format: date-time
        sendResult:
          type: string
          description: 送信の結果。
          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: 送信の処理が開始された日時。
          format: date-time
        status:
          type: string
          description: 送信リクエストのステータス。
          enum:
            - CANCELED
            - COMPLETE
            - PENDING
            - PROCESSING
        statusId:
          type: string
          description: 送信のステータスを照会するために使用されるID。
    PublicSingleSendEmail:
      required:
        - bcc
        - cc
        - replyTo
      type: object
      properties:
        bcc:
          type: array
          description: Bccとして送信するEメールアドレスのリスト。
          items:
            type: string
        cc:
          type: array
          description: Ccとして送信するEメールアドレスのリスト。
          items:
            type: string
        from:
          type: string
          description: Eメールの送信元ヘッダー。
        replyTo:
          type: array
          description: Eメールの返信先ヘッダー値のリスト。
          items:
            type: string
        sendId:
          type: string
          description: 特定の送信のID。sendIdごとに送信されるEメールは1件までです。
        to:
          type: string
          description: Eメールの受信者。
    EventIdView:
      required:
        - created
        - id
      type: object
      properties:
        created:
          type: string
          description: イベント作成の日時。
          format: date-time
        id:
          type: string
          description: イベントのID。
          format: uuid
    Error:
      required:
        - category
        - correlationId
        - message
      type: object
      properties:
        category:
          type: string
          description: エラーカテゴリー
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: エラー条件に関する背景状況
          example: >-
            {invalidPropertyName=[propertyValue], missingScopes=[scope1,
            scope2]}
        correlationId:
          type: string
          description: リクエストの固有ID。エラー報告またはサポートチケットには必ずこの値を含めてください
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: エラーに関する詳細情報
          items:
            $ref: '#/components/schemas/ErrorDetail'
        links:
          type: object
          additionalProperties:
            type: string
          description: エラーまたは推奨の修正手順に関するドキュメントが含まれる関連付けられたURIへのリンク名の対応付け
        message:
          type: string
          description: エラーと修正手順（該当する場合）を記した、人が理解できるメッセージ
          example: An error occurred
        subCategory:
          type: string
          description: エラーに関する具体的な詳細が含まれる特定のカテゴリー
      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: エラーの詳細に関連付けられているステータスコード
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: エラー条件に関する背景状況
          example: '{missingScopes=[scope1, scope2]}'
        in:
          type: string
          description: エラーが見つかったフィールドまたはパラメーターの名前。
        message:
          type: string
          description: エラーと修正手順（該当する場合）を記した、人が理解できるメッセージ
        subCategory:
          type: string
          description: エラーに関する具体的な詳細が含まれる特定のカテゴリー
  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:
            content: ''
            transactional-email: ''

````