发送带背景图像的电子邮件

时间:2012-10-02 15:36:41

标签: email outlook vml

我尝试使用表格中的图片创建一封电子邮件作为背景图片。我找到了一些应该起作用的代码。在大多数电子邮件客户端中它确实有效,但在Outlook 2010中我看到的是图像,但不是文本。我有什么办法可以让它发挥作用吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>HVAC Success Confirmation</title>
</head>
<body style="background-color: #999999; vertical-align: top;">
<table width="600" border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse;">
<tr>
    <td style="width: 600px; height: 350px; background-image: url('http://epicreviewsdotorg.files.wordpress.com/2011/05/unicorn1.jpg');">
        <!--[if gte mso 9]>
        <v:image xmlns:v="urn:schemas-microsoft-com:vml" id="theImage" style='behavior: url(#default#VML); display: inline-block; position: absolute; width: 600px; height: 350px; top: 0; left: 0; border: 0; z-index: 1;' src="http://epicreviewsdotorg.files.wordpress.com/2011/05/unicorn1.jpg" />
        <v:shape xmlns:v="urn:schemas-microsoft-com:vml" id="theText" style='behavior: url(#default#VML); display: inline-block; position: absolute; width: 600px; height: 350px; top: -5; left: -10; border: 0; z-index: 2;'>
        <div>
        <![endif]-->
        <table width="600" border="0" cellspacing="0" cellpadding="0" style="border-collapse: collapse;">
          <tr>
            <td height="350" align="center" valign="top" style="padding-top:80px">
                <p>This table in here has a bunch of stuff I want to lay over the background image...</p>         
            </td>
          </tr>
        </table>
        <!--[if gte mso 9]>
        </div>
        </v:shape>
        <![endif]-->
    </td>
</tr>
</table>
</body>
</html>

我找到了多个网页,例如http://iamskwerl.com/tech/2011/11/html-emails-outlook-and-background-images/http://www.campaignmonitor.com/blog/post/3363/updated-applying-a-background-image-to-html-email/,但它没有让我更进一步。

1 个答案:

答案 0 :(得分:2)

我能够做到这一点的唯一方法是通过此代码(TD表)。我在Outlook客户端2010中进行了测试。我还通过webmail客户端进行了测试,它对两者都有效。 复制并粘贴此内容,您唯一需要做的就是更改your_image.jpg(对于同一图像,有两个实例,请确保为代码更新)和#your_color。

<td bgcolor="#your_color" background="your_image.jpg">

<!--[if gte mso 9]>

<v:image xmlns:v="urn:schemas-microsoft-com:vml" id="theImage" style='behavior: url(#default#VML); display:inline-block; position:absolute; height:300px; width:600px; top:0; left:0; border:0; z-index:1;' src="your_image.jpg"/>

<v:shape xmlns:v="urn:schemas-microsoft-com:vml" id="theText" style='behavior: url(#default#VML); display:inline-block; position:absolute; height:300px; width:600px; top:-5; left:-10; border:0; z-index:2;'>

<![endif]-->

<p>Text over background image.</p>

<!--[if gte mso 9]>

</v:shape>

<![endif]-->

</td>

source