如何通过 AppleScript 将文件附加到 Microsoft Outlook 中的新邮件?

Ale*_*olm 3 macos outlook applescript

在升级到 Office 365 和 OSX 10.10 之前,以下脚本运行良好:

tell application "Microsoft Outlook"
    set newMessage to make new outgoing message
    tell newMessage
        make new attachment with properties {file:"/Users/foo/file"}
    end tell
    open newMessage
end tell
Run Code Online (Sandbox Code Playgroud)

但现在它给出了这个错误信息:

execution error: Microsoft Outlook got an error: Error while saving the changed record property. (-2700)

程序是否已更改,或者这是 OSX 或 Outlook 中的错误?

jac*_*300 5

路径必须是别名posix 文件

像这样转换 posix 路径:

set x to "/Users/foo/file" as POSIX file
-- or --> set x to "/Users/foo/file" as POSIX file as alias
tell application "Microsoft Outlook"
    set newMessage to make new outgoing message
    tell newMessage
        make new attachment with properties {file:x}
    end tell
    open newMessage
end tell
Run Code Online (Sandbox Code Playgroud)