I create an Outlook email from other application in VBA.
I can place a text in the Body of the email just fine, but that wipes out the signature.
Any trick to retain the Signature in the email
---- Andy
"Hmm...they have the internet on computers now"--Homer Simpson
I can place a text in the Body of the email just fine, but that wipes out the signature.
Code:
Dim OutApp As New Outlook.Application
Dim OutMail As Outlook.MailItem
Set OutMail = OutApp.CreateItem(olMailItem)
With OutMail[green]
.Subject = "Some Subject text"
.Display [red]'I can see signature here just fine :)[/red]
.Body = "Some Body text"
.Display [red]'Signature here is gone :([/red]
End With
Set OutMail = Nothing
Any trick to retain the Signature in the email
---- Andy
"Hmm...they have the internet on computers now"--Homer Simpson