Hi,
I'm using the following code to generate an email from excel (2003):
Now I want to be able to set the Importance to "High", can anyone help me with the correct syntax.
Regards
ColinKJ
I'm using the following code to generate an email from excel (2003):
Code:
Set OutApp = CreateObject("Outlook.Application")
On Error Resume Next
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
On Error Resume Next
With OutMail
.To = Eadd
.CC = ""
.BCC = ""
.Subject = Su
.body = body
.ReadReceiptRequested = True
.display
End With
On Error GoTo 0
Now I want to be able to set the Importance to "High", can anyone help me with the correct syntax.
Regards
ColinKJ