I write a program to process incoming mail using is CDO for NT server. I
need to move
the mail in the drop directory after processing them. Therefore, how do I
do it?
The mail which I move should be those belong to the user who was bound to
the
session object by the LogonSMTP method.
Below is part of the code
For i = 0 TO colMessages.count
Set objMessage = colMessages(i)
strSubject = objMessage.subject
strMessage = objMessage.text
At this junture, is there a way to move objMessage to another folder?
That is, is there a way to find out the path of this objMessage and
then move it to the other folder?