How to remove default mark / marker from Outlook email view for HTML emails

I am having trouble finding to remove default values ​​or default fields from my html email in most versions of Outlook. I was wondering if there is anything that I can post in my HTML email to prevent the display of spaces / fields.

thank

+5
source share
4 answers

It works:

<body style="margin: 0px; padding: 0px; background-color: #252525" bgcolor="#252525">

Just pay attention to the fact that you set the background color of the body so that it gets into the email chain if it is redirected. I would suggest leaving the body white and setting the color in the html container table to prevent this.

+2
source

, , , :

    <table cellpadding="0" cellspacing="0">

    <td style="font-size:0px;">
+1

Try using CSS reset from the HTML Boilerplate :

body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;}
.ExternalClass {width:100%;}

Or better yet, just use the Boilerplate as a starting point for your emails.

+1
source

You can add inline styles that override the default Outlook settings (they take precedence).

Eg.

<div style="padding:0; margin:0;" class="wrapper">
  ... etc ...
</div>
0
source

All Articles