如何使用applescript打开电子邮件?

时间:2008-12-23 23:32:39

标签: applescript email-integration

我正在写一个小的applescript,它在查看器中检索所有“未读”的消息并循环它们。

我有两个目标需要完成:

  1. 我需要获取每条消息的主题并执行正则表达式以查看它是否适合第2步(例如:使用主题{。*}获取电子邮件)

  2. 我需要在单独的窗口中打开每条消息,4秒后,我需要关闭该窗口并继续下一条消息

  3. 你知道怎么做吗?

    提前致谢。

3 个答案:

答案 0 :(得分:2)

以下AppleScript对我有用,但我不确定如何进行正则表达式匹配。你可以使用unix'grep'函数和applescript的'do shell script'命令,但我不是如何正确使用grep的专家。我会把它留给其他人回答。


on run
    tell application "Mail"
        set myInbox to mailbox "INBOX" of account 1
        set myMessages to every message of myInbox

        repeat with theMessage in myMessages
            if read status of theMessage is false then

                if my subjectIsInteresting(subject of theMessage) then
                    open theMessage
                    delay 4
                    close window 1
                end if

            end if
        end repeat

    end tell
end run

on subjectIsInteresting(subject)

    -- do some regex magic here

    return true -- for now

end subjectIsInteresting

答案 1 :(得分:1)

对于正则表达式 - 如果您在自己的计算机上运行脚本,或者可以捆绑它,您可以使用Satimage的Smile扩展(http://www.satimage.fr/software/en/downloads/index.html),它将正则表达式添加到Applescript。

答案 2 :(得分:1)

我知道你已经有了答案,但是你看过Automator了吗?对于大多数标准脚本,如果您对AppleScript不太熟悉,可能会少一些痛苦。它不是'programmy',但速度很快,你花在调试上的时间也会减少。