Editing the fpdbform.inc in frontpage2000 - 3/19/2001 20:00:00
I have edited this and it works but the form info comes into the email as a link with & and + symbols and it is all in one line.What do I need to do to get this info into the email body in a way that is more presentable? sFrom = Request.Form("EMailAddress") sTo = "midwestdreams@yahoo.com" sSubject = "My Ad" sBody = Request.Form ---------------- Set myCDONTSMail= CreateObject("CDONTS.NewMail") myCDONTSMail.BodyFormat= 1 MyCDONTSMail.MailFormat= 0 myCDONTSMail.Importance= 2 myCDONTSMail.Send sFrom, sTo, sSubject, sBody Set myCdontsMail= Nothing ------------------- This is how it shows up in Email ------------------- VTI-GROUP=0&MemberID=1321564869&City=Wichita&State=Kansas&EmailAddress=mom_of_4boys@yahoo.com&Category=Antiques%2FCollectables&ItemName=Testing21&Description=this+is+just+a+test&Pr ice=00&B1=Submit -------------------- I sure hope somebody can help me. Thanks in advance!!!!! Christina
|