xpilot兄能不能看看我这个页面(mail.asp)有什么错,好象没有发邮件的功能,什么反应都没有。我在form的action里面加了action="mail.asp"。
---------------------------------
<%@LANGUAGE="VBSCRIPT"%>
<%
'***** This is a XP_JMail's Sender with Free JMail!
Dim xp_jmail
Set xp_jmail = Server.CreateObject("Jmail.smtpmail")
xp_jmail.Serveraddress = "211.152.50.53"
xp_jmail.Contenttype = "text/html"
xp_jmail.Charset = "gb2312"
xp_jmail.Sender = Request.Form("from")
xp_jmail.Subject = Request.Form("subject")
xp_jmail.Addrecipient Request.Form("to")
xp_jmail.Body = Request.Form("content")
Set xp_jmail = Nothing
%>
Mail