Me gustaría usar un mensaje que está almacenado en la carpeta 'Borradores' como plantilla para otros mensajes. Desafortunadamente, 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
¿Qué me estoy perdiendo?