ASP email problem

Hi! After checking the code from w3schools I tried using this on my ASP page:

<%
Set icopaMail=CreateObject(“CDO.Message”)
icopaMail.Subject=request.Form(“csubject”)
icopaMail.From=request.Form(“cname”)
icopaMail.To=“info@amazination.com
icopaMail.TextBody=request.Form(“cmessage”)
icopaMail.Send
set icopaMail=nothing
%>

but I don’t get any emails on the account. Can anyone help?