I'm trying to send an email from my asp page.
Using Interdev / iis 4 / VB

The code i'm using is as follows
********************************
Sub Button3_onclick()

Set objSendMail = CreateObject("CDONTS.NewMail")
With objSendMail
.From = "[email protected]"
.To = "[email protected]"
.Subject = "Testing ASP cdonts"
.Body = "This is a test of sending email from ASP."
.Send
End with
Set objSendMail = Nothing
End Sub

**********************8

I have referenced the CDO for NTS 1.2 library in the project.
No errors are generated , its just nothing is happening , no emails , nothing.

Any ideas let me know?