Outlook 2016を自動化したいMacの場合。
自動化したいタスクは基本的に次のとおりです。
さて、どうすればいいのか分からない….
Windowsマシンにアクセスできることに注意してください。したがって、(苦痛ではありますが)VBAスクリプトをそこで記述してMacに「転送」することは可能です。 Office 365を持っていません。
ご協力いただきありがとうございます!
シルヴァン
これはAppleScriptで非常に可能です。基本的な例を以下に示します。
tell application "Microsoft Outlook"
set theContent to ""
set theMessages to messages of folder "Inbox" of default account
repeat with theMessage in theMessages
if subject of theMessage contains "match this string" then
set theContent to theContent & plain text content of theMessage
end if
end repeat
set theMessage to make new outgoing message with properties {subject:"the subject line", plain text content:theContent}
make new recipient with properties {email address:{address:"[email protected]", name:"Lumpkin Skinbark"}} at end of to recipients of theMessage
open theMessage -- for further editing
end tell
まだ見つからない場合は、[ファイル]メニューから[辞書を開く]を選択し、Microsoft Outlookアプリケーションを選択して、Outlookのスクリプト辞書を開くことができます。