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?