因此,我一直在将Applescript与Outlook版本16结合使用来自动执行某些任务。我想创建一封电子邮件,然后将其保存在草稿文件夹中,但操作失败。
我已经对此进行了多种尝试(例如将newMessage保存在草稿中等),但似乎无法使其正常工作-applescript / outlook的字典也没有太大帮助。也许我没有足够的经验来理解它...我可以打开自己创建的电子邮件。我可以从Outlook发送。我只是无法将其保存在草稿中。
tell application "Microsoft Outlook"
set newMessage to make new outgoing message with properties {subject:"Hello I'm an email"}
set plain text content of newMessage to "Hello World "
save in drafts
end tell