Hi, I've been using the same framework for other feedback forms (Using CDONTs) and have nver encountered this problem before??
All mails using this form go to BAD MAIL when opeing these files in Notepad, I can't find the xsender (From).
Here's the code in my get.asp file:
(pretty straight forward)
************************************************** *********
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<%
Dim t1name
Dim t1
Dim t2name
Dim t2
t1name = "email"
t1 = Request.Form("t1")
t2name = "subject"
t2 = Request.Form("t2")
Dim stname,st
stname = "comments"
st = Request.Form("st")
Dim ObjMail
Set ObjMail = Server.CreateObject("CDONTS.NewMail")
ObjMail.To = "
[email protected]"
ObjMail.From =t1
ObjMail.Subject = "INTRANET feedback"
ObjMail.BodyFormat = 0
ObjMail.MailFormat = 0
ObjMail.Body = t1name & vbcrlf&_
t1 & vbcrlf&_
t2name & vbcrlf&_
t2 & vbcrlf&_
stname & vbcrlf&_
st
ObjMail.Send
Set ObjMail = Nothing
Response.Write"Thank You"
%>
************************************************** *********
Any help understanding what's missing here would greatly be appreciated.
Nancy
As always thanks for your help!