Estoy escribiendo un Applescript para que yo pueda adjuntar un archivo a Outlook desde la terminal de la siguiente manera:
$ attachToOutlook myreport.xlsx
Donde attachToOutlook
es un alias a osascript /path/to/my/script/attach
Esta es mi aplicació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 da el siguiente error:
attach:263:264: script error: Expected expression, etc. but found ":". (-2741)
¿Cómo puedo solucionar este problema?