Mac OS X 10.7.5 で Outlook for Mac 2011 バージョン 14.3.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 に答える