我正在尝试使用图片上的文字为Outlook 2010创建.oft模板 - 文本应该可以由最终用户自定义...
如果我从html文件创建新电子邮件并将其另存为模板,则输入不可编辑(仅使用普通样式的段落)
如果我直接在Outlook中创建新的电子邮件模板,一切都可以正常使用,但它不能正确发送 - 所有内容都作为附件发送 - 因此它无法在某些邮件客户端中正确显示(例如gmail)。
是否有任何防弹方法如何为Outlook 2010创建电子邮件模板?
答案 0 :(得分: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。
祝你好运。