如何使用applescript检索苹果邮件中的外发邮件的邮件正文?

时间:2013-01-07 11:00:01

标签: macos applescript apple-mail

如何检索外发邮件的电子邮件正文,收件人电子邮件地址,主题等。

感谢您的帮助。

修改: - 我在外发邮件工具栏中添加了一个自定义按钮,请参阅图像。

enter image description here

该按钮的功能是发送邮件并保存我服务器上的所有邮件详细信息,那么我怎么能得到这样的细节, 两个电子邮件地址“To”=“test@gmail.com”和“cc”=“test2@gmail.com”,subject =“我的主题”,以及电子邮件正文=“我的电子邮件正文”

我怎样才能实现这个目标?

1 个答案:

答案 0 :(得分:1)

通过这个苹果脚本,您可以检索邮件内容,所以请试试。

tell application "System Events"
    tell process "Mail"
        set _Contents to {}
        set _contentDetail to {}
        set the _contentDetail to entire contents of UI element 1 of scroll area 3 of window 1
        repeat with _value in _contentDetail
            set str to ""
            if class of _value is static text then
                set str to value of _value
            end if
            set str to str & return
            set _Contents to _Contents & str

        end repeat
        return get _Contents as string
    end tell
end tell