Ho cercato di scrivere un AppleScript che aprisse l'app di posta registra un salvataggio come evento chiave (Maiusc + Comando + S) attendi 1,5 secondi, fai un evento chiave di ritorno ("Invio") e poi attendi un altro 1 secondo e quindi registrare un evento chiave freccia giù.
activate application "Mail"
repeat 2310 times
tell application "System Events" to keystroke "s" using {shift down,command down}
delay 1.5
tell application "System Events" to keystroke "return"
delay 1
tell application "System Events" to keystroke "DownArrow"
end repeat