你的意思是将用户填写的数据提交并通过Email发送到你的邮箱里面吗?
这里有个例子,你可以参考一下:<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>提交到管理员邮箱</title>
</head>
<body>
      <form name="form" method="post"  action="mailto:[email protected]?SUBJECT=邮件主题" enctype="text/plain">
      <p>您的姓名:<input type="text" size="17" name="Name">
         国别地区:<input type="text" name="Location" size="15" value="国家/省/市">
      </p> 
          <p><input type="submit" value="立即发送" name="sendok" class=input3>
             <input type="reset" value="重新填写" name="B1" class=input3>
          </p>
                  
      </form>
</body>
</html>将其中的邮件地址“[email protected]”改为你的地址即可。
这个方法需要用户端安装有邮件发送软件,并且会弹出提示确认窗口;如果事先告知,估计影响不大,还是可以使用的。你可以在相关位置进行注释说明。