Applescript for Mail检查来自电子邮件地址=回复电子邮件地址

时间:2013-01-28 21:08:34

标签: applescript

我正在尝试为收到的电子邮件创建规则,以检查发件人电子邮件地址是否与回复电子邮件地址相同。我发现我收到的很多垃圾邮件都可以通过此检查进行过滤,而且我没有看到使用Apple Mails规则中的选项进行操作的方法。

1 个答案:

答案 0 :(得分: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