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

# Preview a project email template



## OpenAPI

````yaml GET /project_email_templates/{id}/preview
openapi: 3.0.3
info:
  title: Pocketflows API
  version: 0.0.4
servers:
  - url: https://api.pocketflows.com
    description: Production server
security:
  - HttpBasicAuth: []
paths:
  /project_email_templates/{id}/preview:
    get:
      tags:
        - Project email templates
      summary: Preview a project email template
      parameters:
        - in: path
          name: id
          schema:
            type: string
          description: The ID of the project email template
          required: true
      responses:
        '200':
          description: The HTML of the compiled project email template
          content:
            text/html:
              schema:
                type: string
      security: []
components:
  securitySchemes:
    HttpBasicAuth:
      type: http
      scheme: basic

````