<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Custom Email Template HTML Minification and Empty Lines Bug in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/919425#M70937</link>
    <description>&lt;P&gt;Hey, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/439002"&gt;@rothnic&lt;/a&gt;&lt;/SPAN&gt;, happy Thursday!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;I would recommend connecting with &lt;/SPAN&gt;&lt;A href="http://help.hubspot.com/" target="_blank"&gt;HubSpot Technical Support&lt;/A&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;, as Support is included in your subscription, and they will be able to provide real-time assistance for this matter, including hopping on a screen share if necessary.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;Kindly,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;Pam&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 08 Feb 2024 15:03:16 GMT</pubDate>
    <dc:creator>PamCotton</dc:creator>
    <dc:date>2024-02-08T15:03:16Z</dc:date>
    <item>
      <title>Custom Email Template HTML Minification and Empty Lines Bug</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/918743#M70916</link>
      <description>&lt;P&gt;We are using custom email templates with programmable emails, where the body of the template is defined in an imported module.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are doing this because are emails are rather large as a digest of our website content, and Hubspot was bloating our email significantly, causing it to get truncated in gmail very quickly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We noticed one of our emails was still getting truncated earlier than expected, so I looked at the rendered HTML to see if there was any opportunity to further optimize it. What I discovered was two issues:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Hubspot is not removing empty lines or applying any non-descructive minification&lt;/STRONG&gt;&lt;OL&gt;&lt;LI&gt;There seems to be no minification happening and I can't seem to find any way to adjust how hubspot handles our HTML.&lt;/LI&gt;&lt;LI&gt;I'm also not sure of a reasonable workflow where we can manually minify the programmable email and keep the templates where we can easily edit them.&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&amp;nbsp;Loops generate new lines even if there is no output text&lt;/STRONG&gt;&lt;OL&gt;&lt;LI&gt;This doesn't seem to be consistent &lt;A href="https://developers.hubspot.com/docs/cms/hubl/variables-macros-syntax#variables-within-loops" target="_blank" rel="noopener"&gt;with the example in the docs where they are updating a property in a loop&lt;/A&gt;, then outputing the value. There is not an empty line for each iteration of the loop&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;Email Code Examples:&lt;/H3&gt;&lt;P&gt;I broke out the key components of our email for testing, so will share the key snippets below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H4&gt;Custom Email Template (only added my module to the default template)&lt;/H4&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!--
    templateType: email
    isAvailableForNewContent: true
    isEnabledForEmailV3Rendering: true
--&amp;gt;
&amp;lt;!doctype html&amp;gt;
&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;{% if content.html_title and content.html_title != '' %}{{ content.html_title }}{% else %}{{ content.body.subject }}{% endif %}&amp;lt;/title&amp;gt;
    {% if content.meta_description %}&amp;lt;meta name="description" content="{{ content.meta_description }}"/&amp;gt;{% endif %}
    &amp;lt;style type="text/css" id="hs-inline-css"&amp;gt;
      /*&amp;lt;![CDATA[*/
      /* everything in this style tag will be inlined onto matching elements */
      .sample-rule {
      }
      /*]]&amp;gt;*/
    &amp;lt;/style&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;!-- Preview text (text which appears right after subject in certain email clients) --&amp;gt;
    &amp;lt;div id="preview_text" style="display:none!important"&amp;gt;{% text "preview_text" label="Preview Text &amp;lt;span class=help-text&amp;gt;This will be used as the preview text that displays in some email clients&amp;lt;/span&amp;gt;", value="", no_wrapper=True %}&amp;lt;/div&amp;gt;
    &amp;lt;!-- View as webpage link --&amp;gt;
    {% if content.create_page %}
    &amp;lt;div&amp;gt;
      Not rendering correctly? &amp;lt;a class="hubspot-mergetag" data-viewaswebpage="true" href="{{ view_as_page_url }}"&amp;gt;View this email as a web page&amp;lt;/a&amp;gt;.
    &amp;lt;/div&amp;gt;
    {% endif %}

    {% module "nick_testing_module" path='/Testing/nick_testing_module', label="nicks module" %}

    &amp;lt;!-- Office location information and unsubscribe links --&amp;gt;
    &amp;lt;p id="footer"&amp;gt;
      {{ site_settings.company_name }}&amp;amp;nbsp;
      {{ site_settings.company_street_address_1 }}&amp;amp;nbsp;
      {{ site_settings.company_street_address_2 }}&amp;amp;nbsp;
      {{ site_settings.company_city }}&amp;amp;nbsp;
      {{ site_settings.company_state }}&amp;amp;nbsp;
      {{ site_settings.company_zip }}&amp;amp;nbsp;
      {{ site_settings.company_country }}&amp;amp;nbsp;
      &amp;lt;br/&amp;gt;
      You received this email because you are subscribed to {{ subscription_name }} from {{ site_settings.company_name }}.
      &amp;lt;br/&amp;gt;
      &amp;lt;a class="hubspot-mergetag" data-unsubscribe="true" href="{{ unsubscribe_link }}"&amp;gt;Update your email preferences&amp;lt;/a&amp;gt; to choose the types of emails you receive.
      &amp;lt;br/&amp;gt;
      &amp;lt;a class="hubspot-mergetag" data-unsubscribe="true" href="{{ unsubscribe_link_all }}"&amp;gt;Unsubscribe from all future emails.&amp;lt;/a&amp;gt;
    &amp;lt;/p&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H4&gt;Module with Loop&lt;/H4&gt;&lt;LI-CODE lang="markup"&gt;{# Define the offers we want to get by the custom id property offer_id, plus the fields to request  each offer #}
{% set offer_ids = '21492984,21492637,21492671,21492983,21492631,21492916,21492940,21492640,21492681,21492689,21492974,21492652,21492654,21492591,21492577,21492982,21492636,21492978,21492955,21492649,21490191,21492558,21492612,21492976,21492946' %}

{% set offer_fields = 'offer_id,offer_title,headline,image_url,universal_url,value_statement,click_url,promoted' %}

{# Get offers by comma separated list of offer_ids #}
{% set unsorted_offers = crm_objects('offers', 'offer_id__in=' ~ offer_ids ~ '&amp;amp;limit=100', offer_fields) %}
{% set unsorted_offers = unsorted_offers.results %} 

{# Hubspot doesn't return the offers in the order we requested, so create new sorted list 

   THIS IS WHERE THE EXTRA LINES ARE ADDED
   
   If you put the entire for-loop on one line, the issue goes away, but hurts code readability
   
#}
{% set offers = [] %}
{% for offer_id in offer_ids|split(',') %}
  {% for offer in unsorted_offers %}
    {% if (offer.offer_id|int) == offer_id|int %}
      {% do offers.append(offer) %}
    {% endif %}
  {% endfor %}
{% endfor %} 

{{ offer_ids }}
{{ unsorted_offers|join(',', 'offer_id') }}
{{ offers|join(',', 'offer_id') }}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rendered Output HTML&lt;/P&gt;&lt;P&gt;Here, you'll see the basic start of the template, then 1000+ emply lines, then the output of:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The offer ids we requested from crm_objects&lt;/LI&gt;&lt;LI&gt;The offer ids in the order that they were returned from crm_objects (can't simply sort the list because we have it in a specific order)&lt;/LI&gt;&lt;LI&gt;The offer ids after performing the loop-based sort&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!doctype html&amp;gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
    
    &amp;lt;style type="text/css" id="hs-inline-css"&amp;gt;
      /*&amp;lt;![CDATA[*/
      /* everything in this style tag will be inlined onto matching elements */
      .sample-rule {
      }
      /*]]&amp;gt;*/
    &amp;lt;/style&amp;gt;
  &amp;lt;base href="https://21305817.hubspotpreview-na1.com" target="_blank"&amp;gt;&amp;lt;meta name="generator" content="HubSpot"&amp;gt;&amp;lt;meta name="viewport" content="width=device-width, initial-scale=1"&amp;gt;&amp;lt;meta property="og:url" content="https://info.dealnews.com/7dea362b-3fac-3e00-956a-4952a3d4f474"&amp;gt;&amp;lt;meta name="x-apple-disable-message-reformatting"&amp;gt;&amp;lt;meta name="robots" content="noindex,follow"&amp;gt;&amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;!-- Preview text (text which appears right after subject in certain email clients) --&amp;gt;
    
    &amp;lt;!-- View as webpage link --&amp;gt;
    
    &amp;lt;div&amp;gt;
      Not rendering correctly? &amp;lt;a class="hubspot-mergetag" data-viewaswebpage="true" href="https://info.dealnews.com/7dea362b-3fac-3e00-956a-4952a3d4f474" data-hs-link-id="0" target="_blank"&amp;gt;View this email as a web page&amp;lt;/a&amp;gt;.
    &amp;lt;/div&amp;gt;
    
    &amp;lt;div id="hs_cos_wrapper_nick_testing_module" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_module" style="color: inherit; font-size: inherit; line-height: inherit;" data-hs-cos-general-type="widget" data-hs-cos-type="module"&amp;gt;










 




  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  

  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
  
    
      
    
  
    
  
    
  
    
  
    
  
 

21492984,21492637,21492671,21492983,21492631,21492916,21492940,21492640,21492681,21492689,21492974,21492652,21492654,21492591,21492577,21492982,21492636,21492978,21492955,21492649,21490191,21492558,21492612,21492976,21492946
21490191,21492558,21492577,21492591,21492612,21492637,21492631,21492636,21492640,21492649,21492654,21492652,21492681,21492671,21492689,21492916,21492940,21492955,21492976,21492983,21492946,21492974,21492978,21492982,21492984
21492984,21492637,21492671,21492983,21492631,21492916,21492940,21492640,21492681,21492689,21492974,21492652,21492654,21492591,21492577,21492982,21492636,21492978,21492955,21492649,21490191,21492558,21492612,21492976,21492946&amp;lt;/div&amp;gt;
    &amp;lt;!-- Office location information and unsubscribe links --&amp;gt;
    &amp;lt;p id="footer" style="margin-bottom: 1em; "&amp;gt;
      DealNews&amp;amp;nbsp;
      501 Madison Street SE&amp;amp;nbsp;
      &amp;amp;nbsp;
      Huntsville&amp;amp;nbsp;
      AL&amp;amp;nbsp;
      35801&amp;amp;nbsp;
      &amp;amp;nbsp;
      &amp;lt;br&amp;gt;
      You received this email because you are subscribed to emails from DealNews.
      &amp;lt;br&amp;gt;
      &amp;lt;a class="hubspot-mergetag" data-unsubscribe="true" href="https://info.dealnews.com/hs/preferences-center/en/page?data=W2nXS-N30h-GnW4tCG3m251GplW1X7dG92-svxxW3NCqxL1QzpnvW308vn63VLDBQW3_FW9G47xhVBW2FDqSQ3XWDwHW1QfdtX3R16QmW3D-PPC2THr6RW1Zd5qY1NprhKW2RQJt_47s_j7W2CGn752PSw-rW2FMWK43LDTJ0W1ZfMPM1V0ny4W235FjB3drTt7W4tCgTL2Kn8-XW4r6FvB2zw_XHW2KRj824ftbvJW2WL5w-2Rg8cmW4m9B814klSSsW2FM7fp38xqSDW3Hc1SB4rBCggW2zXKmB49LMJgW2MT-Xd1_l5r8W3ST6fd3H622QW2569W52RwqNcW3Q_2fy2YD5h_W1NdKnP1--XJ4W2WJmNG2ztYJ7W3R6w_s4r7sWSW1QB9x64fJJbbW3QDtdh3QCZHtW2r4Trh41tWdqW4fNpVT1S4hZqW3LRdmg2YmhkG0" data-hs-link-id="0" target="_blank"&amp;gt;Update your email preferences&amp;lt;/a&amp;gt; to choose the types of emails you receive.
      &amp;lt;br&amp;gt;
      &amp;lt;a class="hubspot-mergetag" data-unsubscribe="true" href="https://info.dealnews.com/hs/preferences-center/en/direct?data=W2nXS-N30h-MdW4px7by2Mk0d6W3T0XK33813zCW3dyPnk3_Z8-xW2xNx0J2HB-9kW329xGh22WqbTW3ZW2Tf2Kx4xYW1Nmgs34fr2xNW2HCNL44csZJJW4t6trZ4pCb2ZW4tl65z4cHFvtW2C-NB53NMkhZW2RLSMM3bvbR9W1VrJyR3XZBtrW4fyl_S2xZt_fW3yQDcN41ZMcPW4mtLDM1Xmlb9W1VgWPj1Vs5fMW3S-N242xZ8CXW2PyM3c2MmXsNW2qG6qj2t0sv6W3M7k_-1Sjt4rW3_sW-634DXBxW49wDNr1ShxNNW4rnrzm3bdsyrW4cw0YQ2FFM8hW2YtxsB1QyZd_W4frwbF3ST8xjW2RjBby386VNYW1_3tGH1Xvp0SW47wPXy2nSLJ7W2HJR7g20VQM4W43VpxX32t03zW1ShzDw2HT9_YW3QS7Bc212sJh0" data-hs-link-id="0" target="_blank"&amp;gt;Unsubscribe from all future emails.&amp;lt;/a&amp;gt;
    &amp;lt;/p&amp;gt;
  
&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 07 Feb 2024 17:07:08 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/918743#M70916</guid>
      <dc:creator>rothnic</dc:creator>
      <dc:date>2024-02-07T17:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Email Template HTML Minification and Empty Lines Bug</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/919425#M70937</link>
      <description>&lt;P&gt;Hey, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/439002"&gt;@rothnic&lt;/a&gt;&lt;/SPAN&gt;, happy Thursday!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;I would recommend connecting with &lt;/SPAN&gt;&lt;A href="http://help.hubspot.com/" target="_blank"&gt;HubSpot Technical Support&lt;/A&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;, as Support is included in your subscription, and they will be able to provide real-time assistance for this matter, including hopping on a screen share if necessary.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;Kindly,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(51,51,51);font-size:14px;"&gt;Pam&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 15:03:16 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/919425#M70937</guid>
      <dc:creator>PamCotton</dc:creator>
      <dc:date>2024-02-08T15:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Email Template HTML Minification and Empty Lines Bug</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/920255#M70982</link>
      <description>&lt;P&gt;Have you tried adding a minus sign to your expressions and comments? It's an indicator to remove white space at the start and end of a block.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{%- expression -%}
{#- comment -#}&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 09 Feb 2024 17:23:55 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/Custom-Email-Template-HTML-Minification-and-Empty-Lines-Bug/m-p/920255#M70982</guid>
      <dc:creator>alyssamwilie</dc:creator>
      <dc:date>2024-02-09T17:23:55Z</dc:date>
    </item>
  </channel>
</rss>

