Forum Moderators: mack
<%
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail")
myMail.From = request("email")
myMail.To = "me@mydomain.com"
myMail.Subject = request("subject")
myMail.Body = request("message")
myMail.Send
Set myMail = Nothing
%>
thats assuming you post fields called email, subject and message to the page...