ASP CDOSYS ภาษา ASP ไม่มี Function การส่งอีเมล์โดยตรง ซึ่งก็เป็นข้อจำกัดอีกข้อหนึ่งของผู้ที่พัฒนาโปรแกรมด้วยภาษา ASP ซึ่งจะต่างจากภาษา PHP หรือ ASP.NET จะมีฟังก์ชั่นของตัวเอง สำหรับผู้ที่ต้องการส่งอีเมล์ด้วย ASP จะต้องใช้ Component เข้ามาช่วยในเรื่องของ Function การส่งเมล์ และตัวที่น่าใช้อีกตัวหนึ่งก็คือ CDOSYS การใช้งานและคำสั่งก็ง่ายมาก ๆ ครับ
<% Option Explicit %>
<html>
<head>
<title>ThaiCreate.Com ASP CDONTS.NewMail Send Mail</title>
</head>
<body>
<%
Dim myMail
Set myMail = Server.CreateObject("CDO.Message")
If IsObject(myMail) Then
Response.write("CDO Connected")
Else
Response.write("CDO not Connect")
End If
Set myMail = Nothing
%>
</body>
</html>