Hello,
I send out the the following message in a DTS package on Windows 2000 server:
set msg = CreateObject("CDO.Message")
msg.From = "SQL_Monitor@DBFIN01PR"
msg.To = "
[email protected]"
msg.Subject = "GL File Created at " & Now
msg.TextBody = "Check the file for its validity" & vbCRLF & vbCRLF
msg.Configuration.Fields("urn:schemas:httpmail:pri ority").Value= cdoPriorityUrgent
msg.Configuration.Fields("urn:schemas:httpmail:imp ortance").Value= cdoHigh
msg.Configuration.Fields("urn:schemas:mailheader:X-Priority").Value = 0
msg.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mailgw.huntington.com"
msg.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
msg.Configuration.Fields.Update
msg.Send
Yet, when I send the message I do not see the priority or importance shown in the message viewed in Lotus Notes. Basically does the code look correct for the the value I want for importance and priority. Any feedback would be great.
Thanks.