我看了又看,但找不到这个看似简单的问题的答案(我也是 AppleScript 的新手)。基本上,我只想要一个脚本来设置规则并将邮件移动到邮箱“Foo”(我的 IMAP 帐户中的邮箱)。这是我所拥有的:
tell application "Mail"
set newRule to make new rule at end of rules with properties {name:"Foo Internal", enabled:true}
tell newRule
make new rule condition at end of rule conditions with properties {rule type:any recipient, expression:"internal_foo@foo.com", qualifier:does contain value}
set move message to mailbox "Foo"
end tell
end tell
我试过这条线的各种组合......
set move message to mailbox "Foo"
...包括指定 IMAP 帐户、将其设置为变量等。我不是程序员,但我真的想编写这些规则的脚本,因为我在工作中一直在设置规则。有什么帮助吗?