CDONTS stands for ‘Collaboration Data Objects for Windows NT Server’ and as the name suggest it is for NT, sorry Win9x users you don’t have this component. The CDONTS component is installed when you install IIS on NT4 and Windows 2000. Although the component will run on Windows XP, Microsoft have decided to remove the [...]
Tag Archives: ASP
Como utilizar CDONTS para envío de email
The CDONTS component is a great email component to use on your ASP pages. Below are some sample CDONTS Mail scripts to use on your ASP pages: To send a text-based message using CDONTS: <% dim mail ‘Create the object set mail = server.CreateObject(“CDONTS.NewMail”) mail.From = “anyone@yourdomain.com” ‘This is the address that the email is [...]
