将图像嵌入电子邮件 - ContentID 和 ContentLocation 之间有什么区别?
我正在使用 aspNetEmail 发送包含嵌入图像的电子邮件,并且尝试在两个选项之间进行选择:
ContentLocation:使用 Content-Location 标头嵌入图像。
ContentId:使用 Content-ID 标头嵌入图像。
我检查了 aspNetEmail 网站上的文档,但没有太多信息。我怀疑这些选项适用于在所有电子邮件应用程序中嵌入图像?
这两种设置有什么区别?它将如何影响我的电子邮件?
I am using aspNetEmail to send emails with embedded images and I am trying to choose between two options:
ContentLocation: Embed images using the Content-Location header.
ContentId: Embed images using the Content-ID header.
I checked the aspNetEmail website for documentation but there wasn't very much information. I suspect these options are applicable to embedding images in all email applications?
What is the difference between the two settings, and how will it affect my emails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ContentId
表示附件内容的标识符。 ContentId 可以设置为任何字符串值。应用程序可以使用ContentId来实现自己的识别机制。
ContentLocation
包含与附件内容的位置相对应的统一资源标识符 (URI)。
ContentId
Represents an identifier to the contents of the attachment. ContentId can be set to any string value. Applications can use ContentId to implement their own identification mechanisms.
ContentLocation
Contains the Uniform Resource Identifier (URI) that corresponds to the location of the content of the attachment.