Black Magic Sports

Thank you for contacting Black Magic Sports.  We will be reviewing your information shortly.

<% dim strEmail, strPhone, strName, strComments Select Case Request.QueryString("action") Case "finish" strEmail = Request.Form("Email") strPhone = Request.Form("Phone") strName = Request.Form("Name") strComments = Request.Form("Comments") Dim objNewMail Set objNewMail = Server.CreateObject("CDONTS.NewMail") objNewMail.From = "contactus@blackmagicsports.com" objNewMail.To = "blackmagicsports@hotmail.com" objNewMail.Subject = "Contact us from Black Magic Sports" objNewMail.Body = "Contact us Form at Black Magic" & _ vbCrlf & "Email = " & strEmail & _ vbCrlf & "Phone = " & strPhone & _ vbCrlf & "Name = " & strName & _ vbCrlf & "Comments = " & strComments & _ vbCrlf objNewMail.Importance = 2 objNewMail.Send set objNewMail = Nothing End Select %>