0

我正在尝试为 Outlook 2010 创建带有文本的 .oft 模板 - 文本应该由最终用户自定义...

例子

如果我从 html 文件创建新电子邮件并将其另存为模板,则输入不可编辑(仅使用普通样式的段落)

如果我直接在 Outlook 中创建新的电子邮件模板,对用户来说一切正常,但无法正确发送 - 所有内容都作为附件发送 - 因此在某些邮件客户端(例如 gmail)中无法正确显示.

是否有任何防弹方法如何为 Outlook 2010 创建电子邮件模板?

4

1 回答 1

0

我做了一个小提琴,所以你可以看到这个代码在行动:https ://jsfiddle.net/wallyglenn/7zLaLrfx/

<div style="background-color:#ff0000; width:600px;">
  <!--[if gte mso 9]>
  <v:background xmlns:v="urn:schemas-microsoft-com:vml" fill="t">
    <v:fill type="tile" src="http://www.gwally.com/news/photos/catintinfoilhat.jpg" color="#ff0000"/>
  </v:background>
  <![endif]-->
  <table height="450" width="600" cellpadding="0" cellspacing="0" border="0">
    <tr>
      <td valign="top" align="left" background="http://www.gwally.com/news/photos/catintinfoilhat.jpg">
        <h1 style="text-align: center; color: #ffffff;-webkit-text-stroke-width: 1px; -webkit-text-stroke-color: black; font-family: Arial, san-serif;">
          Background Image with text on top
        </h1>
      </td>
    </tr>
  </table>
</div>

原始代码取自https://backgrounds.cm

祝你好运。

于 2017-12-04T21:50:38.310 回答