使用delphi从outlook获取电子邮件
我想知道是否有人知道如何借助 Delphi 代码从 Outlook 获取电子邮件。 我想要得到的是电子邮件的每个部分,例如主题、发件人、附件等。
谨致问候!
I was wondering if anyone knows how to get emails from outlook for example with the help of Delphi code.
What I'd like to get is every part of the email like, subject, sender, attachments etc.
Best Regards!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本示例向您展示如何使用 Delphi 提供的 TOutlookApplication 组件通过 Outlook 发送电子邮件。它应该让您了解哪些信息可用于邮件项目。
检测 Outlook 中的邮箱 将告诉您在哪里可以找到当前位于任何邮箱中的电子邮件Outlook 邮箱。
This example shows you how to use the TOutlookApplication component provided with Delphi to send emails with Outlook. It should get you an idea on what information is available for mail items.
Detecting mailboxes in outlook will tell you where you can find the emails that are currently in any Outlook mail boxes.
您可以使用标准 OLE 自动化来访问 Outlook:
您还可以查看 TurboPower OfficePartner,这是一个与 Office 集成的简单方法。我已经很久没有看过这个项目了,所以它可能已经过时了,但在首页上最新的活动只是几个月前......
You can use standard OLE automation to access Outlook:
You may also have a look at TurboPower OfficePartner which is an easy way to integrate with Office. I haven't looked at this project for ages, so it might be outdateed, but on the front page the latest activity was only a few months ago...