如何使用AppleScript阅读最新的Microsoft Outlook 2016消息

时间:2017-04-17 02:46:50

标签: outlook applescript

如何使用AppleScript在Outlook 2016 for Mac中显示最新邮件的内容?

我可以这样做:

tell application "Microsoft Outlook"
   return unread count of messages
end tell

但是我收到了错误:

error "Microsoft Outlook got an error: Can’t get unread count of every message." number -1728 from unread count of every message

这是我的开始,但我不知道该怎么做。

1 个答案:

答案 0 :(得分:0)

这是你如何做到的。它将最新的消息内容写入“first-message-content.txt”

on writeTextToFile(theText, theFile, overwriteExistingContent)
    try

        -- Convert the file to a string
        set theFile to theFile as string

        -- Open the file for writing
        set theOpenedFile to open for access file theFile with write permission

        -- Clear the file if content should be overwritten
        if overwriteExistingContent is true then set eof of theOpenedFile to 0

        -- Write the new content to the file
        write theText to theOpenedFile starting at eof

        -- Close the file
        close access theOpenedFile

        -- Return a boolean indicating that writing was successful
        return true

        -- Handle a write error
    on error

        -- Close the file
        try
            close access file theFile
        end try

        -- Return a boolean indicating that writing failed
        return false
    end try
end writeTextToFile

tell application "Microsoft Outlook"
    set theMessage to first item of (get current messages)
    get subject of theMessage
    set theContent to (content of theMessage)
end tell

set theFile to (((path to desktop folder) as string) & "first-message-content.txt")
writeTextToFile(theContent, theFile, true)

您可以通过打开Apple脚本编辑器找到Outlook 2016的所有操作,然后选择文件>打开词典> Microsoft Outlook。