Я пишу Applescript, щоб можна було додати файл до Outlook з терміналу таким чином:
$ attachToOutlook myreport.xlsx
Де attachToOutlook
псевдонім osascript /path/to/my/script/attach
Це моя поточна реалізація:
on run argv
tell application "Microsoft Outlook"
set theContent to ""
set theAttachment to item 1 of argv
set theMessage to make new outgoing message with properties {subject: ""}
tell content
make new attachment with properties {file: (item 1 of argv )} at the end of theMessage
end tell
open theMessage -- for further editing
end tell
end run
але я отримую таку помилку:
attach:263:264: script error: Expected expression, etc. but found “:”. (-2741)
Як це можна виправити?