MHT 使用 Indy 发送邮件
我的问题是如何使用 Delphi 7 IDE 发送 mht 消息 throw Indy 9?
提前致谢!
My question is how to send a mht message throw Indy 9 with Delphi 7 IDE?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MHT 是一种将 HTML 文档和相关资源保存到单个文件中的格式。要将此类文档作为电子邮件发送,您必须首先提取 HTML 和资源数据,并将它们像其他 HTML 格式的电子邮件一样放入 TIdMessage 组件中。 Indy 网站上有一些文章介绍如何使用 Indy 发送 HTML 电子邮件。
请查看 RFC 2557 了解 MHTML 如何与电子邮件交互。
MHT is a format for saving an HTML document and associated resources into a single file. To send such a document as an email, you would have to extract the HTML and resource data first and put them into a TIdMessage component like other HTML-formatted email. There are articles on Indy's website for how to send HTML emails with Indy.
Have a look at RFC 2557 for how MHTML interacts with email.