I found macro details to enter the "to" "subject" and "body", however when using the signature and email string disappears. What i'm looking for is the code so that the email string below the body macro doesn't disappear.
My idea is to highlight a message I want to forward, then auto populating the To, Subject and body with certain text, it is working however i'm loosing the email string below.
Using Code:
Sub PreAlert()
Dim msg As Object
Set msg = Application.ActiveInspector.CurrentItem
msg.Forward
msg.To = "BT"
msg.Subject = "Pre-Alert: PO - FEDEX -"
msg.Body = "PREALERT" (would like to have a hard return inserted)
msg.Display
End Sub
Any Assistance would be greatly appreciated.
Thanks Eddy
My idea is to highlight a message I want to forward, then auto populating the To, Subject and body with certain text, it is working however i'm loosing the email string below.
Using Code:
Sub PreAlert()
Dim msg As Object
Set msg = Application.ActiveInspector.CurrentItem
msg.Forward
msg.To = "BT"
msg.Subject = "Pre-Alert: PO - FEDEX -"
msg.Body = "PREALERT" (would like to have a hard return inserted)
msg.Display
End Sub
Any Assistance would be greatly appreciated.
Thanks Eddy