Click here to Skip to main content
15,897,090 members
Articles / Desktop Programming / MFC

SMTP Server Transport Events - Simple Scripting

Rate me:
Please Sign up or sign in to vote.
3.60/5 (5 votes)
26 Dec 20023 min read 111K   967   26  
An article on SMTP Server Events
<SCRIPT language="VBScript">
 
On Error Resume Next

Const cdoRunNextSink = 0

Sub ISMTPOnArrival_OnArrival(ByVal Msg, EventStatus)
  

   
    On Error Resume Next 


	Set Flds = Msg.Fields
	With Flds
		
  		.Item("urn:schemas:httpmail:messageflag") = True
  		.Item("urn:schemas:mailheader:x-message-flag") = True
  		.Update
	End With


    ' save changes to the mail
    Msg.Datasource.Save

    ' continue with the next event sink
    EventStatus = cdoRunNextSink

End Sub

</SCRIPT>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Australia Australia
I've been programming for a few years now. I blog regularly at httpcode.

Comments and Discussions