我正在尝试为收到的电子邮件创建规则,以检查发件人电子邮件地址是否与回复电子邮件地址相同。我发现我收到的很多垃圾邮件都可以通过此检查进行过滤,但我没有看到使用 Apple Mails 规则中的选项的方法。
问问题
131 次
1 回答
1
尝试:
using terms from application "Mail"
on perform mail action with messages theMessages for rule theRule
tell application "Mail"
repeat with aMessage in theMessages
if aMessage's sender = aMessage's reply to then
beep
--insert your code here
end if
end repeat
end tell
end perform mail action with messages
end using terms from
于 2013-01-28T21:32:56.513 回答