<% Dim mail, body body = "Phone number: " & Request.Form("phone") Set mail = Server.CreateObject("CDO.Message") mail.To = Request.Form("To") mail.From = Request.Form("From") mail.Subject = Request.Form("Subject") mail.TextBody = body mail.Send() Response.Write("Thanks for submitting the feedback.") Set mail = nothing Set body = nothing %>