JMAIL,反馈的表单到QQ邮箱后没有内容

来源:百度知道 编辑:UC知道 时间:2024/06/25 12:02:26
<form onSubmit="return checkform();" action="http://www.neb.net.cn/sendmail.jsp" method="post" >
<input type=hidden name="sendemail" value="282077932@qq.com" />
<input type="hidden" name="subject" value="提醒您收邮件" />
<input type="hidden" name=tHtml value="" />



form>
部分代码我删除,BAIDU说超过3000字。
你们Q我,282077932,对了还加分塞

给你个例子..自己参照去:
<html>
<body>
<form action="MAILTO:someone@w3schools.com" method="post" enctype="text/plain">
<h3>This form sends an e-mail to W3Schools.</h3>
Name:<br>
<input type="text" name="name" value="yourname" size="20">
<br>
Mail:<br>
<input type="text" name="mail" value="yourmail" size="20">
<br>
Comment:<br>
<input type="text" name="comment" value="yourcomment" size="40">
<br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>