Io per mandare una mail dal sito uso questo:
<%
commenti = Request.Form("commenti")
mandamiquesto = commenti
if commenti <> "" then
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.From = "Da chi parte la mail"
objMail.To = "Indirizzo d'arrrivo della mail "
objMail.Subject = "Oggetto della mail"
objMail.Body = mandamiquesto
objMail.importance = 1
objMail.Send
Set objMail = Nothing
end if
Response.Write("
<form name='form1' method='post' action='LA PAGINA ASP DOVE E INSERITO LO SCRIPT'>")
Response.Write("<p align='center'><font face='Ms Sans Serif' size='2' color='FF9933'>scrivi il tuo parere</font>")
Response.Write("
<input name='commenti' type='text' size='10' maxlength='200'>")
Response.Write("<input name='Submit' type='submit' value='invia'></form></p>")
%>

E' semplice e funziona bene. Spero ti possa servire ciao