Celebrate Our 22nd Anniversary with Huge Savings! Up to 70% Off

How to send email through CDONTS Email?

CDONTS stands for "Collaboration Data Objects for Windows NT Server" and as the name suggests it is for NT. The CDONTS component is installed when you install IIS on NT4, Windows 2000 and Windows 2003 servers.

Although, the component will run on Windows XP, Microsoft has decided to remove the component from IIS 5.1 on Windows XP, so you will have to track down a copy of the cdonts.dll and register it on the IIS web server.

To use this component to send an e-mail, you also need the SMTP Server that ships with IIS 4 or 5 installed on the web server. The SMTP server is usually installed by default with the standard IIS installation.


Sample code:

  1. <%
  2. Dim objCDOMail
  3. Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
  4. objCDOMail.From = "[email protected]"
  5. objCDOMail.To = "[email protected]"
  6. objCDOMail.Cc = "[email protected]"
  7. objCDOMail.Bcc = "[email protected]"
  8. objCDOMail.Subject = "Subject"
  9. objCDOMail.BodyFormat = 0
  10. objCDOMail.MailFormat = 0
  11. objCDOMail.Body = "MailBody"
  12. objCDOMail.Importance = 1
  13. objCDOMail.Send
  14. Set objCDOMail = Nothing
  15. %>


Explanation according to line:

  1. Open ASP tag
  2. Declare a variable named objCDOMail
  3. Create instance of Mailer control
  4. Set Mailer control properties and collection items
  5. Set Mailer control properties and collection items
  6. Set Mailer control properties and collection items
  7. Set Mailer control properties and collection items
  8. Set Mailer control properties and collection items
  9. Set Mailer control properties and collection items
  10. Set Mailer control properties and collection items
  11. Set Mailer control properties and collection items
  12. Set Mailer control properties and collection items
  13. Send Mail
  14. Release resources
  15. Close ASP tag

Note: This may please be noted that this component can be uniformly used by all the users of Windows Shared Hosting and Windows VPS (2003 OS).

Looking to send emails using CDO? Click on Send > CDO Email for more details.


Was this answer helpful?

« Back

chat