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




