Lotus Notes 8 中的 html 时事通讯

发布于 2024-08-23 12:00:52 字数 527 浏览 5 评论 0原文

我正在尝试发送 HTML 时事通讯,它在除 Lotus Notes 8 之外的大多数电子邮件客户端中工作正常。

问题:

即使设置为 640,表大小也会转换为 100% 宽度。我尝试将所有内容封装到一个表中。尝试了以下操作:

<table width=640>
<table width="640">
<table cellpadding=5 width=640>
<table cellpadding="5" width="640">

显然Lotus Notes将其呈现为这样:

<table width=3D100%>

当然,该表的格式已正确,如下所示:

<table>
  <tr>
    <td>
      Foobar
    </td>
  </tr>
</table>

I am trying to send HTML newsletters and it works fine in most email clients except Lotus Notes 8.

Problem:

Table size get converted to 100% width even though set to 640. I have tried to encapsulated everything into one table. Tried the following:

<table width=640>
<table width="640">
<table cellpadding=5 width=640>
<table cellpadding="5" width="640">

Apparently Lotus Notes render it like this:

<table width=3D100%>

Of course the table has be formatted correctly like so:

<table>
  <tr>
    <td>
      Foobar
    </td>
  </tr>
</table>

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

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

发布评论

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

评论(2

妥活 2024-08-30 12:00:52

尝试使用 CSS,这里有一个页面,其中包含 CSS 标准列表以及电子邮件客户端支持的标准:

http ://www.campaignmonitor.com/css/

Try using CSS, here's a page with a list of CSS-standards and which are supported by what email-client:

http://www.campaignmonitor.com/css/

恏ㄋ傷疤忘ㄋ疼 2024-08-30 12:00:52

你能尝试这样做吗?使用 Lotus Notes,有时嵌套会有所帮助...

<table cellspacing="0" border="0" cellpadding="0" width="100%">
  <tr>
    <td>
      <table cellspacing="0" border="0" cellpadding="0" width="640" align="center">
        <tr>
          <td style="padding:5px";>
             Foobar apply padding as inline if you must apply padding
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>

Can you try doing this? with Lotus notes sometimes nesting helps...

<table cellspacing="0" border="0" cellpadding="0" width="100%">
  <tr>
    <td>
      <table cellspacing="0" border="0" cellpadding="0" width="640" align="center">
        <tr>
          <td style="padding:5px";>
             Foobar apply padding as inline if you must apply padding
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文