0

差出人メール アドレスが返信メール アドレスと同じかどうかを確認する受信メールのルールを作成しようとしています。私が受け取っているスパムの多くは、このチェックでフィルタリングできることがわかりましたが、Apple Mail ルールにあるオプションでそれを行う方法がわかりません。

4

1 に答える 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 に答える