如何修复添加缩写点的Google Inbox(不存在于Gmail中)中的html呈现问题

我在下面创建了这个电子邮件布局,并且在我的生活中不能弄明白为什么Gmail正确呈现它,但Inbox渲染它可怕.

《如何修复添加缩写点的Google Inbox(不存在于Gmail中)中的html呈现问题》

经过检查,由于某种原因,将一堆东西分成他们自己的表格元素.任何人都会看到我失踪的东西.我对电子邮件的HTML很新,而且我总是对它有多糟糕感到震惊.

<body style="margin:0; padding:0; width:100% !important; font-family: verdana;">
<table width="100%" bgcolor="#F7F7F7" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" align="center">
    <tr>
        <td>
        <table cellpadding="20" cellspacing="0" border="0" align="center">
            <tr>
                <td valign="top" align="center"><span style="color: rgb(44, 160, 209); font-size: 24px; font-family: verdana;">shift</span><span style="color: rgb(235, 42, 83); font-size: 24px; font-family: verdana; font-weight: bold;">Swap</span></td>
            </tr>
      </table>
    </td>
  </tr>
  <!-- This is where your content goes bro -->
  <tr>
    <td>
        <table width="600" bgcolor="#FFF" align="center" style="border-radius:8px;">
          <tr>
            <td style="padding: 35px;">
              <h3>
                Welcome <span style="text-decoration: none;"><%= @email %></span>!
              </h3>
              <div>
                <span style="display: block;">You can confirm your account email through the link below:</span>
                <br>
                <a href="<%= confirmation_url(@resource, confirmation_token: @token) %>" target ="_blank" style="display: block; color: orange; text-decoration: none; font-size: 150%;">Confirm your account</a>
                <br>
                <span style="display: block;">Or paste the following into the address bar: <%= confirmation_url(@resource, confirmation_token: @token) %></span>
                <h3 style="padding-top: 20px;">Thanks for signing up. We're looking forward to seeing you on the site!</h3>
              </div>
            </td>
          </tr>
        </table>
        </td>
    </tr>
    <tr>
        <td>
            <table width="600" align="center" cellpadding="50">
                <tr align="center"><td style="color: #2b2b2b";>Made by <a style="color: orange; text-decoration: none;" href="http://rafipatel.com">Rafi Patel</a> ©<%= Time.new.year %></td></tr>
            </table>
        </td>
    </tr>
</table>
</body>

当Inbox出于某种原因隐藏整个消息时,这就是它的样子,这似乎发生在我发送“reconfirm”消息时:

《如何修复添加缩写点的Google Inbox(不存在于Gmail中)中的html呈现问题》

和Gmail:

《如何修复添加缩写点的Google Inbox(不存在于Gmail中)中的html呈现问题》

最佳答案 我真的建议取出所有非表格元素,因为即使是2016年,邮件客户也远远落后

<body style="margin:0; padding:0; width:100% !important; font-family: verdana;">
  <table width="100%" bgcolor="#F7F7F7" cellpadding="0" cellspacing="0" border="0" id="backgroundTable" align="center">
    <tr>
      <td>
        <table cellpadding="20" cellspacing="0" border="0" align="center">
          <tr>
            <td valign="top" width="50%" align="right" style="color: rgb(44, 160, 209); font-size: 24px; font-family: verdana;padding-right: 0">
              shift              
            </td>
            <td valign="top" align="left" style="color: rgb(235, 42, 83); font-size: 24px; font-family: verdana; font-weight: bold;padding-left: 0">
              Swap
            </td>
          </tr>
        </table>
      </td>
    </tr>
    <!-- This is where your content goes bro -->
    <tr>
      <td style="padding: 35px;background: #FFF">
        <table width="600" bgcolor="#FFF" align="center" style="border-radius:8px;">
          <tr>
            <td style="text-decoration: none; font-size: 22px">
              Welcome
              @ email !
            </td>
          </tr>
          <tr>
            <td style="padding-top: 20px; font-size: 22px">
              You can confirm your account email through the link below:
            </td>            
          </tr>
          <tr>
            <td>
              <a href="<%= confirmation_url(@resource, confirmation_token: @token) %>" target="_blank" style="display: block; color: orange; text-decoration: none; font-size: 150%;">Confirm your account</a>
            </td>
          </tr>
          <tr>
            <td>
              Or paste the following into the address bar:
              confirmation_url
            </td>
          </tr>
          <tr>
            <td style="padding: 20px 0; font-size: 22px">
              Thanks for signing up. We're looking forward to seeing you on the site!
            </td>
          </tr>
        </table>
      </td>
    </tr>
    <tr>
      <td>
        <table width="600" align="center" cellpadding="50">
          <tr align="center">
            <td style="color: #2b2b2b">Made by <a style="color: orange; text-decoration: none;" href="http://rafipatel.com">Rafi Patel</a> ©
              <%=T ime.new.year %>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
点赞