Acceder al mensaje de correo de OS X por su ID

1

Estoy intentando (sin éxito) obtener un mensaje de Correo (ubicado en la carpeta 'Borradores') por su ID de mensaje.

El siguiente código:

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 error que lee: Error -1723. Can't get the content of message whose message id = 123456. Access not allowed.

¿Qué me estoy perdiendo?

    
pregunta craig 11.09.2013 - 23:16

1 respuesta

1

Prueba:

tell application "Mail" to get content of (first message of drafts mailbox whose id = 123456)
    
respondido por el adayzdone 11.09.2013 - 23:47

Lea otras preguntas en las etiquetas