Click here to Skip to main content
15,881,882 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 108.8K   967   26  
An article on SMTP Server Events
INSTALLATION
============

Go to command prompt and enter to that directory.

To register the event sink, type:

  cscript smtpreg.vbs /add 1 onarrival AddFollowUp
    CDO.SS_SMTPOnArrivalSink "rcpt to=*@somewhere.com;rcpt to=*@somewhere.net"



Please also run the following command:

  cscript smtpreg.vbs /setprop 1 onarrival AddFollowUp Sink ScriptName
    "<path_to_scriptfile>"

where <path_to_scriptfile>" is the full path and name of the script file, e.g.
  "c:\exchange-script\addfollowup.vbs".


UNINSTALLATION
==============

  cscript smtpreg.vbs /remove 1 onarrival AddFollowUp

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