Acceda a los mensajes en la carpeta 'Borradores' de Outlook

2

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?

    
pregunta craig 23.08.2013 - 21:27

1 respuesta

0

El código corregido:

-- locate the message
set theMessage to the first message in drafts

-- show subject (testing)
display dialog of the (subject of theMessage as text)
    
respondido por el craig 06.09.2013 - 14:56

Lea otras preguntas en las etiquetas