Details To enable CDONTS do the following:
1) In Internet Services Manager, the Default SMTP Server should be on a port other than 25.

2) The outgoing port should be left on port 25.

Then you should start the Default SMTP Server. Ensure the Default SMTP Server auto starts at boot.
For WEBppliance 3.0 for Windows you also need to change the permissions on the C:\InetPub\MailRoot\Pickup folder. Do the following:
3) Bring up the permissions on the Pickup folder:

4) Uncheck “Allow inheritable permissions from parent to propagate to this object.” And then click Copy.

5) Then click on WEBppliance siteadmins and in the Permissions box, click on the Allow box for Write and then click apply.

To test that CDONTS is working, run this example script:
-------------------------------
<% Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "rob@abc.com"
objMail.Subject = "How TO send email with CDONTS"
objMail.To = "someone@someplace.com"
objMail.Body = "This is an email message" & vbcrlf&_
"with CDONTS." & vbcrlf&_
"It is really easy. "
objMail.Send
Response.write("Mail was Sent")
'You must always do this with CDONTS.
set objMail = nothing
%>
---------------------------
|