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?
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?