0

我在 Mac OS X 10.7.5 上使用 Outlook for Mac 2011 版本 14.3.1。我想获取已发送的电子邮件,复制,打开,编辑并再次发送。我曾经有一个applescript来执行此操作,但下载它的链接似乎不再起作用。

4

1 回答 1

0

我怀疑是这样的。

在发送的 iTems 中选择您的电子邮件并运行脚本

  tell application "Microsoft Outlook"
    set theMessage to item 1 of (get selection) # get the first email message

    set subj to subject of theMessage
    set recip to (email address of to recipient of theMessage)


    set cont to content of theMessage
    set newMail to make new outgoing message with properties {subject:subj, content:cont}

    repeat with i from 1 to number of items in recip
        set this_item to item i of recip
        tell newMail to make new recipient at newMail with properties {email address:this_item}
    end repeat

    open newMail
end tell

该脚本使用所有以前的收件人、主题和内容创建一条新消息。然后打开它准备编辑

于 2013-03-07T00:53:28.437 回答