moz-do-not-send 有什么作用?
What does moz-do-not-send do?
我总是在 HTML 的电子邮件中看到 moz-do-not-send="true"
属性。每当我使用 Thunderbird 发送电子邮件中的链接时,它都会将其添加到 <a>
标签中。 moz-do-not-send="true"
属性有什么作用?
当我查找它时,我找不到明确的答案,而是建议在写电子邮件时使用它 HTML,但没有解释它的作用。
自 at least 2004, Thunderbird has been designed by default to include the full image file contents of images inserted in composed emails. If moz-do-not-send
is absent or false
, then upon sending the email, Thunderbird downloads the image and attaches it 到电子邮件。
moz-do-not-send
属性是 Thunderbird 内部使用的一个信号,告诉它不要包含完整的图像文件内容,而是简单地 link 到外部图像。 这是 Mozilla-derived 软件内部使用的 proprietary attribute;它从未成为任何 HTML 规范的一部分。
最好记录在 MozillaZine here. You can see details of the use of this attribute in the Thunderbird source repository here。
由于 50 个信誉限制,无法添加评论。只需要提醒一下,选中的 "solution" 有点跑题。这里的所有答案都指的是 <img>
标签,这不是 OP 询问的内容。问题是指锚标签。即<a moz-do-not-send="true" href="https://blah.blah">blah.blah</a>
那么 moz-do-not-send
对电子邮件中的锚有何作用?
我总是在 HTML 的电子邮件中看到 moz-do-not-send="true"
属性。每当我使用 Thunderbird 发送电子邮件中的链接时,它都会将其添加到 <a>
标签中。 moz-do-not-send="true"
属性有什么作用?
当我查找它时,我找不到明确的答案,而是建议在写电子邮件时使用它 HTML,但没有解释它的作用。
自 at least 2004, Thunderbird has been designed by default to include the full image file contents of images inserted in composed emails. If moz-do-not-send
is absent or false
, then upon sending the email, Thunderbird downloads the image and attaches it 到电子邮件。
moz-do-not-send
属性是 Thunderbird 内部使用的一个信号,告诉它不要包含完整的图像文件内容,而是简单地 link 到外部图像。 这是 Mozilla-derived 软件内部使用的 proprietary attribute;它从未成为任何 HTML 规范的一部分。
最好记录在 MozillaZine here. You can see details of the use of this attribute in the Thunderbird source repository here。
由于 50 个信誉限制,无法添加评论。只需要提醒一下,选中的 "solution" 有点跑题。这里的所有答案都指的是 <img>
标签,这不是 OP 询问的内容。问题是指锚标签。即<a moz-do-not-send="true" href="https://blah.blah">blah.blah</a>
那么 moz-do-not-send
对电子邮件中的锚有何作用?