Tengo el AppleScript a continuación para Outlook 2016. Soy capaz de marcar mi correo como leído, y soy capaz de mover el correo electrónico a la carpeta correspondiente. Pero no puedo categorizar el correo electrónico por alguna razón.
¿Alguien sabe cómo se llama la palabra clave adecuada y, lo que es más importante, un sitio web que me ayude a buscar palabras clave AppleScript para Outlook específicamente?
tell application "Microsoft Outlook"
activate
set msgSet to current messages
if msgSet = {} then
error "No Messages selected. Select at least one message."
error -128
end if
set theMsg to item 1 of msgSet
set theAccount to account of theMsg
set archiveFolder to folder "Tickets" of folder "Archive" of theAccount
repeat with aMessage in msgSet
set aMessage's is read to true
set aMessage's category to "ForReview"
move aMessage to archiveFolder
end repeat
end tell