0

我是applescript的新手。我正在尝试使用以下 applescript 获取所选 Outlook (2011) 电子邮件的主题。

tell application "Microsoft Outlook"
    set theMessage to the current messages

    get the subject of theMessage

end tell

但我收到以下错误消息。

无法获取 {incoming message id 392990 of application "Microsoft Outlook"} 的主题

有人可以帮帮我吗?

4

2 回答 2

1

我对 AppleScript 完全陌生......并且我想要一个脚本来从 Outlook 2011 中的特定电子邮件批次中提取“主题行”和“收到日期”的列表。这可能吗?上面的脚本非常适合从一封突出显示的电子邮件中提取主题行。非常感谢西蒙

于 2015-09-04T13:40:22.493 回答
0

这不起作用的原因是将 theMessage 设置为当前消息会返回一个列表。注意 { }

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

set the clipboard to theSubject
于 2013-03-25T21:41:33.883 回答