Applescript在Outlook 2011中获取消息正文

时间:2011-07-11 15:58:26

标签: email outlook applescript

我需要使用applescript来处理收到的电子邮件正文。 如何在使用Outlook 2011时获取电子邮件正文?

我对Applescript完全不熟悉。

任何使用Applescript与Outlook 2011或此问题的入门代码的教程都会非常有用。

1 个答案:

答案 0 :(得分:0)

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包含消息的内容。