Outlook 2007 呈现问题 - 打印和打印转发功能

发布于 2024-10-13 11:36:40 字数 337 浏览 7 评论 0原文

我们注意到,我们为客户创建的模板在 Outlook 2007 中导致了一些问题。如果您在 Outlook 中按转发或打印按钮,大约需要 1 分钟的时间。 Outlook 需要 2 分钟才能接受此订单。我们推测存在特定的 html 编码导致渲染时间较长。您能看一下代码吗? 预先非常感谢!

http://www.mail-images.com/outlook_performance/sourcecode_newsletter.html

we have noticed that the template we created for a client causes some problems in Outlook 2007. If you press the forward or print button in Outlook, it takes approx. 2 minutes for Outlook to take this order. We presume that there is a specific html coding that causes a longer rendering time. Could you please have a look at the code?
Thanks a lot in advance!

http://www.mail-images.com/outlook_performance/sourcecode_newsletter.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情场扛把子 2024-10-20 11:36:40

您有很多嵌套错误,需要重新检查。

例如,您的代码中有如下内容:

<font><a>Text here</font></a>

虽然应该是

<a><font>Text here</font></a>

另一件事,但请尝试尽可能减少嵌套表的数量。例如,不要将一个单元格表嵌套在另一个单元格表中,这只会减慢渲染速度。

You have lots of nesting errors, that needs to be rechecked.

For example, you have in your code things like:

<font><a>Text here</font></a>

While it should be

<a><font>Text here</font></a>

Another thing, try to reduce as much as possible the amount of nested tables. Like, don't nest a one cell table inside another one, that would just slow the rendering.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文