> For the complete documentation index, see [llms.txt](https://doc.batch.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.batch.com/guides-and-best-practices/message/email/troubleshooting/why-is-gmail-clipping-emails.md).

# Why is Gmail Clipping Emails?

Gmail and some other inbox providers can clip emails that are too long, here is how to troubleshoot your templates.

### About Email Clipping <a href="#h_580005ca69" id="h_580005ca69"></a>

A clipped email is an email that is not fully displayed in your recipient's inbox. This happens when an email's size **exceeds 102KB**.

<figure><img src="https://509463063-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FfiAYaWDWqtFZeXxyg67F%2Fuploads%2FHewoDdoo4iKSOJtUH0cc%2Fdeliverability_email-clipping_310325.png?alt=media&amp;token=aa349b7e-b4dd-40de-be59-c731dea1ecc4" alt=""><figcaption></figcaption></figure>

Clipped emails are serious because they often hide the footer with the **unsubscribe link**, increasing spam complaints and damaging your short-term sender reputation.

### Troubleshooting Clipped Emails

#### <mark style="color:$primary;">→ Email HTML Code Weight</mark> <a href="#h_e35d4c487b" id="h_e35d4c487b"></a>

All content adds to the total weight, including:

* Text
* Links
* HTML code (including conditional display code)

{% hint style="warning" %}
Each character uses approximately 1-2KB.
{% endhint %}

#### <mark style="color:$primary;">→ Attached Images</mark> <a href="#h_357fd159c3" id="h_357fd159c3"></a>

Images can be attached to your emails in two different ways:

* **Enclosed images**: Enclosed images are not stored in the template itself. Images are loaded remotely and only the path to the image is referenced in your email template (e.g. `<img src="https://path/to/img.png" alt="img"/>`). This is Batch's default behavior when you create a template from the email composer.
* **Embedded images**: You may also embed an image encoded in Base64 within your HTML template (e.g. `<img src="data:image/jpeg;base64,[base64code]" />`). Use this approach for small images only, as it adds considerable weight to your template: each Base64 digit represents 6 bits of data. For example, a single 156KB JPEG image will add more than 200K characters to your HTML template.

### Best Practices <a href="#h_2ed35c852d" id="h_2ed35c852d"></a>

1. **Move your unsubscribe link to the top** of long emails to reduce spam complaints
2. **Minimize email size** by:
   * Reducing the number and length of links
   * Condensing text
   * Optimizing HTML code to use fewer characters


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doc.batch.com/guides-and-best-practices/message/email/troubleshooting/why-is-gmail-clipping-emails.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
