> ## Documentation Index
> Fetch the complete documentation index at: https://signatureapi-daf4ee54.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Recipient Email Place

> Automatically insert the recipient's email address at a specific location in the document

A **recipient email place** inserts the email address of the recipient identified by `recipient_key` at a specific location in the document. The value is inserted automatically and does not require any action from the recipient.

You can position recipient email places using either [placeholders](/docs/api/resources/places/positioning/#placeholders) or [fixed positions](/docs/api/resources/places/positioning/#fixed-positions).

## Font Size

Use `font_size` to control the size of the inserted text in points (1/72 inch). Must be between 1 and 144. Defaults to 12.

## Attributes

<ParamField body="type" type="enum" required={true}>
  Specifies the type of place.

  For this kind of place, the value must be `recipient_email`.
</ParamField>

<ParamField body="key" type="string" required={true}>
  A unique identifier for this place within the document. Use this key to match the place to its position, either through a `[[place_key]]` placeholder in the document or an entry in `fixed_positions`.

  Must start with a lowercase letter and contain only lowercase letters, numbers, and underscores. Maximum 32 characters.
</ParamField>

<ParamField body="recipient_key" type="string" required={true}>
  The key of the recipient assigned to this place. Must match one of the `key` values in the envelope's `recipients` array.
</ParamField>

<ParamField body="font_size" type="number">
  The font size in <Tooltip tip="1/72 of an inch">points</Tooltip>. Must be between 1 and 144. Defaults to 12.
</ParamField>

## Examples

<CodeGroup>
  ```json Basic (Placeholder) theme={null}
  "documents": [
    {
      //...
      "places": [
        {
          "key": "client_email",
          "type": "recipient_email",
          "recipient_key": "client"
        }
      ]
      //...
    }
  ]
  ```

  ```json Fixed Position theme={null}
  "documents": [
    {
      //...
      "places": [
        {
          "key": "signer_email",
          "type": "recipient_email",
          "recipient_key": "signer"
        }
      ],
      "fixed_positions": [
        {
          "place_key": "signer_email",
          "page": 1,
          "top": 200,
          "left": 150
        }
      ]
      //...
    }
  ]
  ```

  ```json Multiple Recipients theme={null}
  "documents": [
    {
      //...
      "places": [
        {
          "key": "buyer_email",
          "type": "recipient_email",
          "recipient_key": "buyer"
        },
        {
          "key": "seller_email",
          "type": "recipient_email",
          "recipient_key": "seller"
        }
      ]
      //...
    }
  ]
  ```

  ```json Custom Font Size theme={null}
  "documents": [
    {
      //...
      "places": [
        {
          "key": "applicant_email",
          "type": "recipient_email",
          "recipient_key": "applicant",
          "font_size": 10
        }
      ]
      //...
    }
  ]
  ```
</CodeGroup>
