There is a small typo which is causing the error.
It should be:
UUID="{0E064ADD-9D99-11D0-ABE5-00AA0064D470}"
Not:
UUID="{0E064ADD-9D99-11D0-ABES-00AA0064D470}"
>
> Hello fellows,
>
> I'm trying to test sending mails but keep getting error message.
> - Here is the code.
>
> <!-- METADATA TYPE="TypeLib" NAME="Microsoft CDO for NTS 1.2 Library"
> UUID="{0E064ADD-9D99-11D0-ABES-00AA0064D470}" VERSION="1.2"-
->
>
> <%
> Dim objsendmail
> set objsendmail = CreateObject("CDONTS.NewMail")
> objsendmail.Send "sea@o...", "jamesbkim@h...", "Testing
> webmail", "What's up?"
> Set objsendmail = Nothing
> %>
>
> - The error message is ;
>
> Error Type:
> Active Server Pages, ASP 0223 (0x80004005)
> METADATA tag contains a Type Library specification that does not match
any
> Registry entry.
> /opss/docs/sendmail.asp, line 1
>
> What's wrong with my coding?
> I'll appreciate any comments or sample coding.
>
> James