从 HTML 电子邮件的预览文本中隐藏内容

use*_*021 2 html html-email

我的 HTML 电子邮件顶部有一个导航,但我想隐藏它,否则它总是会出现在电子邮件客户端的预览文本中,是否有简单的方法将它仅隐藏在预览文本中?

Ted*_*oas 9

控制预览(或预标题)文本显示的最佳方法<body>是在电子邮件代码的开始标签后直接添加您自己的:

<body>
    <!-- Visually Hidden Preheader Text : BEGIN -->
    <div style="display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;">
        Add your preview text here so it appears instead of your navigation text.
    </div>
    <!-- Visually Hidden Preheader Text : END -->

    ... Email Body ....

</body>
Run Code Online (Sandbox Code Playgroud)

更多关于 Litmus 的标题文本