Getting a currently open new email message (when un-docked from the main Outlook window) requires the following code:
Outlook.Application oApp = new Outlook.Application();
Outlook.Inspector inspector = oApp.ActiveInspector();
item = inspector.CurrentItem;
Outlook.MailItem oMsg = item as Outlook.MailItem;
How do you do this when the new message is docked within the main window of Outlook? This happens when the user clicks the Reply button within the message they are currently viewing.