He estado intentando escribir un AppleScript que abriría la aplicación de correo. Registrar como evento clave (Shift + Comando + S) esperar 1.5 segundos, hacer un evento clave de retorno ("Enter") y luego esperar 1 segundo y luego registrar un evento clave de flecha hacia abajo.
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