I'm learing ASP and I'm using IIS 5.1 . I believe the version that comes with XP Professional.
In my book it tells me to use CDONTS.NewMail but I get this error.

Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/mailscript.asp, line 2

Invalid class string

Here is what my script looks like

Code:
<%
Set Mail=Server.CreateObject("CDONTS.NewMail")
Mail.To="[email protected]"
Mail.From="[email protected]"
Mail.Subject="Testing Script"
Mail.Body="Message Body is here"
Mail.Send
Set Mail=nothing
%>

Now Microsoft support said I think they said that XP Pro doesn't have the
CDONTS.dll that I should use a different one but I don't seem to have that .dll either
so what should I do? Did anyone have the same problem and find a
solution? Would it work if I found the .dll from somewhere on the internet?
I do have the mail server running because I thought that might be the problem but it wasn't