我是Apple的新手。我试图通过以下AppleScript获取所选outlook(2011)电子邮件的主题。
tell application "Microsoft Outlook"
set theMessage to the current messages
get the subject of theMessage
end tell
但是我收到以下错误消息。
无法获得{传入消息ID 392990的应用程序“Microsoft Outlook”}
的主题有人可以帮帮我吗?
答案 0 :(得分:1)
我对AppleScript完全不熟悉......我想要一个脚本来提取“主题行”的列表。并且'收到日期'来自Outlook 2011中的特定批次电子邮件。 这可能吗。 上面的脚本非常适合从一个突出显示的电子邮件中提取主题行。 非常感谢 西蒙
答案 1 :(得分: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