Tag Archives: IIS

Guía paso a paso para utilizar CDONTS en tu pagina ASP

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 [...]

Leave a comment Continue Reading →

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 [...]

Leave a comment Continue Reading →