Using Classic Outlook on Windows for personal email, calendar, and contact management
I added three lines to AHK to re-map the shortcuts 1 -> 5, 2 -> 6, etc.
;;; Written by Zachary Hunt for basic system automation ;;;#Requires AutoHotkey v2
#SingleInstance; Outlook Quick Actions Remap
HotIfWinActive "ahk_class Outlook"
^+1::^+5
^+2::^+6
^+3::^+7
HotIfWinActive