我目前正在处理一封电子邮件,上面有很多植物地址,我们使用嵌套表铺设所有内容。
这些地址通常分为两个桌子单元格(一个带有街道地址,然后在城市 状态(
由于某种原因,Gmail将随机文本转换为链接,或者有时将带有空链接的表单元格注入,弄乱了电子邮件的布局。
有人知道我如何防止G-邮件将这些链接注入我们的电子邮件中?
我昨天实际上遇到了同样的问题。我使用此功能进行了解决,以使其在触发的链接中进行电子邮件处理。
在您的电子邮件<head>
<style>
块中 *.x-apple-data-detectors, /* iOS */
*.x-gmail-data-detectors, /* Gmail */
.x-gmail-data-detectors *,
.aBn {
border-bottom:0 !important;
cursor:default !important;
color:inherit !important;
text-decoration:none !important;
font-size:inherit !important;
font-family:inherit !important;
font-weight:inherit !important;
line-height:inherit !important;
}
/* Overrides injected client link classes */
.blue-links a {
color:#e6eaf6 !important;
text-decoration:none !important;
}
只需将blue-links
类添加到插入链接的父标签,然后将color
更改为您需要的内容。
gmail和iOS均插入不需要的<a>
链接时,它们遇到地址或看起来像是电话号码的数字。
希望这对您和我一样有用。