Accedi ai messaggi nella cartella 'Bozze' di Outlook

2

Vorrei utilizzare un messaggio che è memorizzato nella cartella "Bozze" come modello per altri messaggi. Sfortunatamente, non ho la sintassi corretta:

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

Cosa mi manca?

    
posta craig 23.08.2013 - 21:27
fonte

1 risposta

0

Il codice corretto:

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

-- show subject (testing)
display dialog of the (subject of theMessage as text)
    
risposta data 06.09.2013 - 14:56
fonte

Leggi altre domande sui tag