0

这可能是一个菜鸟问题,但是嘿,我是菜鸟,所以就这样吧。当我尝试使用 mail() 函数发送电子邮件时,没有出现该消息。

现场示例:在此处输入链接描述

这是我的html代码:

<div id="column-wide">
        <!-- DIV to push bottom of page down -->
        <div style="height: 430px">
      <div id="generic-container">

      <!--*********DO NOT EDIT ABOVE THIS LINE**********-->

<h1>Contact us!</h1>

<p>You can contact us at admin@viddir.com OR you can use our special mail press below.</p>

<br />
<form method="post" action="contactus.php">
    <textarea type="text" id="message" name="message"></textarea>
    <br />
    <input class="btn" type="submit" value="send" name="submit" />
</form>

      <!--*********DO NOT EDIT BELOW THIS LINE**********-->

      </div>
        </div>
    </div>

PHP代码:

<?php
$to = "juggernaut1776@gmail.com";
$subject = "Message from Viddir";
$msg = $POST__['message'];

mail($to, $subject, $msg);
?>
4

1 回答 1

1

改变

$msg = $POST__['message'];

$msg = $_POST['message'];
于 2013-05-25T03:32:28.263 回答