<form method="POST" action="mailto:[email protected]">
...是不是提交表单之后,登录PlainJane的邮箱就能收到表单的信息了呢?
实际上我并没有收到...为什么?

解决方案 »

  1.   

    第一次看到这种用法的,PHP就用mail()函数,form只是提交表单,不能帮你发邮件
      

  2.   

    <?php
    // The message
    $message = "Line 1\nLine 2\nLine 3";// In case any of our lines are larger than 70 characters, we should use wordwrap()
    $message = wordwrap($message, 70);// Send
    mail('[email protected]', 'My Subject', $message);
    ?> 服务器配置正确 手册上的就可以了
      

  3.   

    然后这个被发到哪里去了[email protected]是apache下的还是一个外部的邮箱,像gmail那样的?
      

  4.   

    共同学习中,新手菜鸟正在看从C转向PHP
      

  5.   

    这样是不行的!用 phpmailer类 吧