View Standard Fix
USE CASE Target

Email Not Displaying Correctly in Gmail: Fix Padding & Margin Collapsing for Brevo (Sendinblue) for Transactional & System Notifications

Transactional emails (receipts, password resets, shipping alerts) carry critical operational data. Spacing collapses or broken buttons can block users from completing essential user journeys. Below is the targeted integration guide to fix Padding & Margin Collapsing inside Gmail App (iOS & Android) templates when using Brevo (Sendinblue).

Technical Breakdown

Gmail App (iOS & Android) uses the WebKit / Blink which lacks support for standard rendering rules. This causes Padding & Margin Collapsing elements to break or collapse when rendering templates.

Brevo (Sendinblue) Behaviors

Brevo's rendering system injects inline spacing helpers to support their responsive editor, which can cause column overlaps in Outlook. Using explicit table alignments is required. Because system notifications are triggered frequently, ensure your CSS rules are completely inlined to guarantee readability in high-volume, automated delivery queues.

Remediation Code Block

To ensure spacing works reliably, apply all structural paddings directly to HTML td elements inside tables. Do not apply paddings or margins to raw divs, as Outlook will strip them. For vertical spacing, use explicit spacer tables or empty rows. In your Brevo (Sendinblue) campaign manager, make sure you configure your links to run via {{ unsubscribe }}.

<table role="presentation" border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td height="20" style="font-size: 1px; line-height: 1px;">&nbsp;</td>
  </tr>
  <tr>
    <td style="padding: 15px; background-color: #f1f1f1;">
      Content with padding and margin
    </td>
  </tr>
  <tr>
    <td height="20" style="font-size: 1px; line-height: 1px;">&nbsp;</td>
  </tr>
</table>

Live Code Sandbox Test

Interactive Brevo (Sendinblue) Custom Sandbox

Target Environment: Gmail App (iOS & Android)

How to Deploy inside Brevo (Sendinblue)

1

Copy the fixed VML or table wrapper code block from the remediation box above.

2

Open Brevo's template canvas, select the element you wish to configure, click 'Edit HTML' or insert a standalone 'HTML' content block, and paste the code.

Targeted Fixes by Use Case & Industry