Estoy escribiendo un Applescript para poder adjuntar un archivo a Outlook desde el terminal de la siguiente manera:
$ attachToOutlook myreport.xlsx
Donde attachToOutlook
tiene un alias de osascript /path/to/my/script/attach
Esta es mi implementación actual:
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
pero me aparece el siguiente error:
attach:263:264: script error: Expected expression, etc. but found “:”. (-2741)
¿Cómo puedo solucionar esto?