i have a page set up that collects info from prospective clients via a form and the action of the form is an asp script. the script works it collects the data and sends it off to the specified e-mail address, but when the e-mail is received in a program like outlook nothing shows up. however i also tested it sending it to a yahoo account and it comes through fine. and yes i did turn on html format in my outlook. i am thinking that maybe i am missing something in the script but i am not sure. here is the script:<br><br><%@ Language=VBScript%><br><%<br>Set TheMail = Server.CreateObject("CDONTS.NewMail"<br>TheMessage = "From: " & Request.Form("name" & vbnewline &_<br>Request.Form("first_name" & vbnewline &_<br>Request.Form("last_name" & vbnewline &_<br>Request.Form("phone" & vbnewline &_<br>Request.Form("contact_time" & vbnewline &_<br>Request.Form("class" & vbnewline &_<br>Request.Form("comments"<br>TheMail.Send Request.Form("email","<A HREF="mailto:tekphreak@tek-tips.com">tekphreak@tek-tips.com</A>",TheMessage<br>Set TheMail = Nothing<br>%><br><br>thank u anyone in advance for help!