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 = "email@domain.com"
NewMail.Display
End Sub
i want it not to add the default signature, anybody know how?
regards - Henrik Thomsen - hthomsen.dk
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 = "email@domain.com"
NewMail.Display
End Sub
i want it not to add the default signature, anybody know how?
regards - Henrik Thomsen - hthomsen.dk