Applescript 在 Outlook 2011 中获取邮件正文

发布于 2024-11-19 23:55:44 字数 161 浏览 2 评论 0原文

我需要使用 applescript 在传入期间处理电子邮件正文。 使用 Outlook 2011 时如何获取电子邮件正文?

我对 Applescript 完全陌生。

任何有关在 Outlook 2011 中使用 Applescript 的教程或此问题的起始代码都会非常有帮助。

I need to use applescript to process the body of an email during incoming.
How can I get the body of an email when using Outlook 2011?

I am totally new to Applescript.

Any tutorial for using Applescript with Outlook 2011 or starter code for this question would be greatly helpful.

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

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

发布评论

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

评论(1

一杯敬自由 2024-11-26 23:55:45
set theText to string
tell application "Microsoft Outlook"
    set messages to selection
    repeat with this_message in messages
        set theText to content of this_message
    end repeat
end tell

现在 theText 包含了消息的内容。

set theText to string
tell application "Microsoft Outlook"
    set messages to selection
    repeat with this_message in messages
        set theText to content of this_message
    end repeat
end tell

Now theText has the contents of the message.

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