1

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

谢谢你的帮助。

编辑:- 我在外发邮件工具栏中添加了一个自定义按钮,请参见图片。

在此处输入图像描述

该按钮的功能是发送邮件并将所有邮件详细信息保存在我的服务器上,所以我怎样才能获得这些详细信息,例如电子邮件地址“To”=“test@gmail.com”和“cc”=“test2@gmail” .com", subject="我的主题" 和电子邮件正文="我的电子邮件正文"

我怎样才能做到这一点?

4

1 回答 1

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
于 2013-02-15T11:48:24.273 回答