I have been able to come up with the following. This will forward an e-mail which is already open, but I'm trying to learn to forward the e-mail from within the main outlook window.
Dim objMail As Outlook.MailItem, objNewMail As Outlook.MailItem
Set objMail = Application.ActiveInspector.CurrentItem
Set objNewMail = objMail.Forward
objNewMail.Display
objNewMail.Subject = Right(objNewMail.Subject, Len(objNewMail.Subject) - 4) 'To remove FW:
objNewMail.HTMLBody = "<html><body>Good Day!<br>SignitureMessage</body></html>"
objNewMail.CC = "none@none.com"