Using the thread Here I have created a macro that will open up a template in a new message window. My signature is still at the bottom though.
I want to empty the email content before adding the template, I'm new to VBA and not sure how to do it!
How is this done?
Current code:
Sub TemplateName()
Set msg = Application.CreateItemFromTemplate("C:\Users\xyz\Desktop\template.oft")
msg.Display
End Sub
I want to empty the email before running this sub.