changing the status of the message (read / unread)
Hi,
I'm using exchange 2000, and trying to set the
"urn:schemas:httpmail:read" property to false when inserting a new record/mail , but it fails.I can insert the record successfully but without changing the read status.
Any thoughts, ideas, suggestions,or examples?
thanks
neo
here is my query
INSERT INTO
OPENQUERY(EXCHANGE,'SELECT "DAV:contentclass"," http://schemas.microsoft.com/exchange/outlookmessageclass","urn:schemas:calendar:method" ,"urn:schemas:calendar:location","urn:schemas:http mail:subject","urn:schemas:calendar:dtstart", "urn:schemas:calendar:dtend","urn:schemas:httpmail :fromname","urn:schemas:mailheader:to","urn:schema s:mailheader:from","urn:schemas:mailheader:read","urn:schemas:httpmail:read"
FROM SCOPE(''shallow traversal of "http://SERVER5A/exchange/emailusername/Inbox"'')')
values('urn:contentclasses:calendarmessage','IPM.S chedule.Meeting.Request','REQUEST','CTN','4444 MEETING RESPONSE ACCEPT','2003-08-12 08:30:00','2003-08-12 10:30','HANNES','Hannes;Henk;Neo','0','false')
|