<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>How to Target Email Clients</title>
    <author>
        <name>Parcel</name>
        <email>hello@parcel.io</email>
    </author>
    <description>Crowdsourced email development techniques for singling out email clients and platforms.</description>
    <link>https://howtotarget.email</link>
    <atom:link href="https://howtotarget.email/feed.xml" rel="self" type="application/rss+xml"/>
    <lastBuildDate>Wed, 30 Apr 2025 10:35:42 +0000</lastBuildDate>
    <generator>Jekyll v4.2.2</generator>

    
    
      
      
      <item>
        <title>
          Proton Mail 
          
            (Desktop)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#proton-root&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</summary>
        <pubDate>Sun, 27 Apr 2025 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2025-04-27-proton</id>
        <guid isPermaLink="true">https://howtotarget.email#2025-04-27-proton</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#proton-root</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

            <p>Contributed by <a href="https://github.com/matthieuSolente">Matthieu Solente</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Outlook 
          
            (webmail)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nc&quot;&gt;.your-class-name.x_chained-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Styles for outlook webmail only */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;nc&quot;&gt;.your-class-name.chained-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Styles for everyone else */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;language-html highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nt&quot;&gt;&amp;lt;div&lt;/span&gt; &lt;span class=&quot;na&quot;&gt;class=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;your-class-name chained-class-name&quot;&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;&amp;gt;&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;&amp;lt;!-- Your code --&amp;gt;&lt;/span&gt;
&lt;span class=&quot;nt&quot;&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Outlook webmail (desktop and mobile) prefixes all class names with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;x_&lt;/code&gt;. It does this in the class attribute of html elements as well as class definitions in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;style&amp;gt;&lt;/code&gt; blocks. However, in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;style&amp;gt;&lt;/code&gt; blocks it does it only on the first class name of chained classes: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;.your-class-name.x_chained-class-name&lt;/code&gt; will be changed to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;.x_your-class-name.x_chained-class-name&lt;/code&gt;. On the element &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;div class=&quot;your-class-name chained-class-name&quot;&amp;gt;&lt;/code&gt; will be changed to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;div class=&quot;x_your-class-name x_chained-class-name&quot;&amp;gt;&lt;/code&gt; by Outlook webmails pre processor. 
This approach allows us to build a exclusive targeting which is helpful to tackle the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;box-sizing:border-box !important;&lt;/code&gt; style attribute which Outlook webmail adds on elements having widht / height AND paddings defined as we can set the width / heigth for border-box calculation for Outlook webmail only.&lt;/p&gt;
</summary>
        <pubDate>Fri, 28 Mar 2025 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2025-03-28-outlook-webmail</id>
        <guid isPermaLink="true">https://howtotarget.email#2025-03-28-outlook-webmail</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nc">.your-class-name.x_chained-class-name</span> <span class="p">{</span>
  <span class="c">/* Styles for outlook webmail only */</span>
<span class="p">}</span>
<span class="nc">.your-class-name.chained-class-name</span> <span class="p">{</span>
  <span class="c">/* Styles for everyone else */</span>
<span class="p">}</span>
</code></pre></div></div>

<div class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">&lt;div</span> <span class="na">class=</span><span class="s">"your-class-name chained-class-name"</span><span class="nt">&gt;</span>
  <span class="c">&lt;!-- Your code --&gt;</span>
<span class="nt">&lt;/div&gt;</span>
</code></pre></div></div>

<p>Outlook webmail (desktop and mobile) prefixes all class names with <code class="language-plaintext highlighter-rouge">x_</code>. It does this in the class attribute of html elements as well as class definitions in <code class="language-plaintext highlighter-rouge">&lt;style&gt;</code> blocks. However, in the <code class="language-plaintext highlighter-rouge">&lt;style&gt;</code> blocks it does it only on the first class name of chained classes: <code class="language-plaintext highlighter-rouge">.your-class-name.x_chained-class-name</code> will be changed to <code class="language-plaintext highlighter-rouge">.x_your-class-name.x_chained-class-name</code>. On the element <code class="language-plaintext highlighter-rouge">&lt;div class="your-class-name chained-class-name"&gt;</code> will be changed to <code class="language-plaintext highlighter-rouge">&lt;div class="x_your-class-name x_chained-class-name"&gt;</code> by Outlook webmails pre processor. 
This approach allows us to build a exclusive targeting which is helpful to tackle the <code class="language-plaintext highlighter-rouge">box-sizing:border-box !important;</code> style attribute which Outlook webmail adds on elements having widht / height AND paddings defined as we can set the width / heigth for border-box calculation for Outlook webmail only.</p>

            <p>Contributed by <a href="https://cygro.ch">Cyrill Gross</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Onet 
          
            (Desktop)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#ReadMailMainWrapper&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</summary>
        <pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2025-03-26-onet-chrome</id>
        <guid isPermaLink="true">https://howtotarget.email#2025-03-26-onet-chrome</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#ReadMailMainWrapper</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

            <p>Contributed by <a href="https://github.com/matthieuSolente">Matthieu Solente</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Notion mail 
          
            (Mac, Webmail)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#mail-content-wrapper&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#mail-content-container&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

</summary>
        <pubDate>Sun, 16 Mar 2025 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2025-03-16-notionmail</id>
        <guid isPermaLink="true">https://howtotarget.email#2025-03-16-notionmail</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#mail-content-wrapper</span> <span class="nc">.class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

<p>or</p>

<div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#mail-content-container</span> <span class="nc">.class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>


            <p>Contributed by <a href="https://goodemailcode.com/">Mark Robbins</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Free.fr 
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nc&quot;&gt;.v1your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;nt&quot;&gt;class&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&quot;v1your-class-name&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Free.fr prepends &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;v1&lt;/code&gt; to class names&lt;/p&gt;
</summary>
        <pubDate>Fri, 30 Aug 2024 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2024-08-30-freefr-webmail</id>
        <guid isPermaLink="true">https://howtotarget.email#2024-08-30-freefr-webmail</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nc">.v1your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

<p>or</p>

<div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="o">[</span><span class="nt">class</span><span class="o">=</span><span class="s1">"v1your-class-name"</span><span class="o">]</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

<p>Free.fr prepends <code class="language-plaintext highlighter-rouge">v1</code> to class names</p>

            <p>Contributed by <a href="https://www.patronage.org/">Chris Herold</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Mailspring 
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#inbox-html-wrapper&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;This must be placed in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;body&amp;gt;&lt;/code&gt; of the message as the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;head&amp;gt;&lt;/code&gt; gets removed.&lt;/p&gt;
</summary>
        <pubDate>Wed, 24 Jul 2024 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2024-07-24-mailspring-desktop</id>
        <guid isPermaLink="true">https://howtotarget.email#2024-07-24-mailspring-desktop</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#inbox-html-wrapper</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>
<p>This must be placed in the <code class="language-plaintext highlighter-rouge">&lt;body&gt;</code> of the message as the <code class="language-plaintext highlighter-rouge">&lt;head&gt;</code> gets removed.</p>

            <p>Contributed by <a href="https://goodemailcode.com/">Mark Robbins</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Samsung Email 
          
            (with a non-microsoft account)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;#MessageViewBody&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</summary>
        <pubDate>Wed, 17 Jul 2024 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2024-07-17-samsung-email-non-microsoft</id>
        <guid isPermaLink="true">https://howtotarget.email#2024-07-17-samsung-email-non-microsoft</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="o">&amp;</span> <span class="nf">#MessageViewBody</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

            <p>Contributed by <a href="https://goodemailcode.com/">Mark Robbins</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Samsung Email 
          
            (with a microsoft account)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;err&quot;&gt;#&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;#MessageViewBody&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</summary>
        <pubDate>Wed, 17 Jul 2024 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2024-07-17-samsung-email-microsoft</id>
        <guid isPermaLink="true">https://howtotarget.email#2024-07-17-samsung-email-microsoft</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="err">#</span> <span class="nf">#MessageViewBody</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

            <p>Contributed by <a href="https://goodemailcode.com/">Mark Robbins</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          QQ mail 
          
            (Android)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#mailcontent&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;.mailcontent&lt;/code&gt; also works as well as combining both &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#mailcontent.mailcontent&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;This has only been tested in Android so far but may work on other platforms. Please let us now if you are able to test it.&lt;/p&gt;
</summary>
        <pubDate>Wed, 07 Feb 2024 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2024-02-07-qq-mail-android</id>
        <guid isPermaLink="true">https://howtotarget.email#2024-02-07-qq-mail-android</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#mailcontent</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>

<p><code class="language-plaintext highlighter-rouge">.mailcontent</code> also works as well as combining both <code class="language-plaintext highlighter-rouge">#mailcontent.mailcontent</code>.</p>

<p>This has only been tested in Android so far but may work on other platforms. Please let us now if you are able to test it.</p>

            <p>Contributed by <a href="https://goodemailcode.com/">Mark Robbins</a></p>
          ]]>
        </content:encoded>
      </item>
    
      
      
      <item>
        <title>
          Outlook 
          
            (Android, Mac)
          
        </title>
        <summary>&lt;div class=&quot;language-css highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nf&quot;&gt;#converted-body&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;.your-class-name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/* Replace this comment with your styles */&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

</summary>
        <pubDate>Tue, 12 Dec 2023 00:00:00 +0000</pubDate>
        <id>https://howtotarget.email#2023-12-12-outlook-mac-android</id>
        <guid isPermaLink="true">https://howtotarget.email#2023-12-12-outlook-mac-android</guid>
        <content:encoded>
          <![CDATA[
            <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nf">#converted-body</span> <span class="nc">.your-class-name</span> <span class="p">{</span>
  <span class="c">/* Replace this comment with your styles */</span>
<span class="p">}</span>
</code></pre></div></div>


            <p>Contributed by <a href="https://bare-bones.dev/">Niven Ranchhod</a></p>
          ]]>
        </content:encoded>
      </item>
    
  </channel>
</rss>
