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?