Sto scrivendo un Applescript in modo che possa allegare un file ad Outlook dal terminale nel modo seguente:
$ attachToOutlook myreport.xlsx
Dove attachToOutlook
è con alias su osascript /path/to/my/script/attach
Questa è la mia attuale implementazione:
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
ma sto ricevendo il seguente errore:
attach:263:264: script error: Expected expression, etc. but found “:”. (-2741)
Come posso risolvere questo problema?