Me gustaría utilizar un mensaje que se almacena en la carpeta 'Borradores' como una plantilla para otros mensajes. Por desgracia, no tengo la sintaxis correcta:
tell application "Microsoft Outlook"
-- locate the message
set theMessage to the first message in mail folder drafts <== error: 'Can't make mail folder id 107 into type integer'
-- show subject (testing)
display dialog of the subject of theMessage
-- for each contact with category 'foo'
-- copy message
-- add sender
-- add first name to message's body
-- set delivery date to 5 minutes in the future
-- send message
-- end loop
end tell
Lo que me estoy perdiendo?