Indy9 获取原始电子邮件标头?

发布于 2024-12-28 12:48:16 字数 134 浏览 2 评论 0原文

Indy9 是否有任何方法获取特定的原始电子邮件标头(例如“主题”或“发件人”),其中仍包含传输编码(即:在 Unicode 支持较差的旧版本 Delphi 上未被 DecodeHeader 破坏),或者我是否必须手动解析整个电子邮件标头才能提取此信息?

Does Indy9 have any way to get a specific raw email header (say, "Subject" or "From") which still includes the transfer-encoding (ie: has not been mangled by DecodeHeader on older versions of Delphi with poor Unicode support), or would I have to parse the entire email header manually to extract this information?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

执笏见 2025-01-04 12:48:16

TIdMessage.RawHeaders 属性就是您要查找的内容,例如:

Subject := IdMessage1.RawHeaders.Values['Subject'];

The TIdMessage.RawHeaders property is what you are looking for, eg:

Subject := IdMessage1.RawHeaders.Values['Subject'];
青衫儰鉨ミ守葔 2025-01-04 12:48:16

我已经解决了这个问题,在调用 IdMessage1.ProcessHeaders 之前调用 IdMessage1.Headers.Values['Subject'] 会得到与之后不同的结果。

I have solved the problem, calling IdMessage1.Headers.Values['Subject'] BEFORE calling IdMessage1.ProcessHeaders gives different results than after.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文