Background image table does not work in outlook

0

I'm setting up an email marketing, and when I put the html in outlook it does not appear the image that's like bg from a table, does anyone know how to force it?

Part of the code that is img as bg:

  <table align="center" cellspacing="0" cellpadding="0" width='558' height='379' background="http://www.intercambioglobal.com.br/emailkt/harvard/logo-mid.jpg"  style="width:558px; height:379px; background-image: url(http://www.intercambioglobal.com.br/emailkt/harvard/logo-mid.jpg);">
    
asked by anonymous 30.06.2015 / 17:10

1 answer

0

Michel , try this:

  <!--[if gte mso 9]>
  <v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
    <v:fill type="tile" src="http://www.intercambioglobal.com.br/emailkt/harvard/logo-mid.jpg"color="#7bceeb"/>
  </v:background>
  <![endif]-->
  <table align="center" cellspacing="0" cellpadding="0" width="558" height="379" style="width:558px; height:379px;">
    <tr>
      <td valign="top" align="left" background="http://www.intercambioglobal.com.br/emailkt/harvard/logo-mid.jpg">

            <!-- sua tabela original -->
            <table align="center" border="0" cellspacing="0" cellpadding="0" width="558" height="379" style="width:558px; height:379px;">
                <tbody>
                     <!-- conteúdo da sua tabela -->
                </tbody>
            </table>

      </td>
    </tr>
  </table>
    
30.06.2015 / 17:31