remove auto added signature macro

H

hthomsen

Hi,

i have a macro that creates a new mail from a template. this is the code.
Sub NewMail()
Dim objOLApp As Outlook.Application
Dim NewMail As Outlook.MailItem
Set objOLApp = New Outlook.Application
Set NewMail =
objOLApp.CreateItemFromTemplate("O:\IT\email\Plast_VelkommenNykunde.msg")
NewMail.SentOnBehalfOfName = "(e-mail address removed)"
NewMail.Display
End Sub

i want it not to add the default signature, anybody know how?
 
M

Michael Bauer [MVP - Outlook]

After the signature has been inserted, just overwrite the Body property.

--
Best regards
Michael Bauer - MVP Outlook

: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: <http://www.vboffice.net/product.html?pub=6&lang=en>


Am Tue, 8 Sep 2009 03:18:01 -0700 schrieb hthomsen:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top