Hi
I am using the below code in a MS Office 2000 environment.
Does anyone know how to set the email type to be HTML and also automatically attach the signiature from outlook.
I am using the following standard code to send.
Thanks in advance.
I am using the below code in a MS Office 2000 environment.
Does anyone know how to set the email type to be HTML and also automatically attach the signiature from outlook.
I am using the following standard code to send.
Code:
Set myOlApp = CreateObject("Outlook.Application")
Set myMail = myOlApp.CreateItem(olMailItem)
With myMail
.Display
.To = ("[EMAIL="test@testcompany.com"]test@testcompany.com[/EMAIL]")
.Subject = "test"
.Body = "test body"
.Attachments.Add ThisWorkbook.FullName
End With
'AppActivate (myMail)
SendKeys ("^~")
Thanks in advance.