Accede al messaggio OS X Mail tramite il suo ID

1

Sto tentando (senza successo) di ottenere un messaggio di posta (situato nella cartella "Bozze") tramite il suo ID messaggio.

Il seguente codice:

set theContent to getContent(123456)

on getContent(theID)

  tell application "Mail"       
    try
      return ((content of message whose message id is theID) as rich text)
    on error errText number errNum
      display dialog "Error: " & errNum & return & errText
    end try

  end tell

end getContent

Genera un errore che legge: Error -1723. Can't get the content of message whose message id = 123456. Access not allowed.

Cosa mi manca?

    
posta craig 11.09.2013 - 23:16
fonte

1 risposta

1

Prova:

tell application "Mail" to get content of (first message of drafts mailbox whose id = 123456)
    
risposta data 11.09.2013 - 23:47
fonte

Leggi altre domande sui tag