MS Outlook脚本运行,但没有消息移动

时间:2015-05-21 17:42:07

标签: outlook applescript

我正在尝试编写一个applescript,我可以按计划自动清理邮箱。这是代码:

tell application "Microsoft Outlook"
    set srcFolder to mail folder "Inbox" of on my computer
    set destFolder to mail folder "Deleted Items" of on my computer
    set selectedMessages to messages of srcFolder
    repeat with theMessages in selectedMessages
        if (sender of theMessages is "null@null.com") then
            move theMessages to destFolder
        end if
    end repeat
end tell

代码将搜索电子邮件地址,然后将这些邮件移至“已删除邮件”文件夹。

脚本运行,但没有消息运行。谁能明白为什么这不能正常运行?

1 个答案:

答案 0 :(得分:1)

您是否尝试删除两次出现的

  我的电脑上的

可能没有必要,也可能搞乱了剧本。

您也可以尝试更改此行:

  

将selectedMessages设置为srcFolder

的消息

{{1}}

我的机器上没有Outlook,所以我无法测试这些。