Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/82.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用php和html表单发送电子邮件_Php_Html_Email - Fatal编程技术网

使用php和html表单发送电子邮件

使用php和html表单发送电子邮件,php,html,email,Php,Html,Email,我正在学习php,我正在尝试用html表单给自己发送电子邮件,但它不起作用 <form action="index.php" role="form" method="post" name="emailform"> <div class="form-group"> <label for="email">Email address:</label&

我正在学习php,我正在尝试用html表单给自己发送电子邮件,但它不起作用

    <form action="index.php" role="form" method="post" name="emailform">
                        <div class="form-group">
                            <label for="email">Email address:</label>
                            <input type="email" class="form-control" id="email" name="email">
                        </div>
                        <div class="form-group">
                            <label for="comment">Text:</label>
                            <textarea type="textarea" class="form-control" id="textarea" rows="5" name="textarea"></textarea>
                        </div>
                        <button type="submit" class="btn btn-default" id="submit" name="submit">Submit</button>
                    </form>

                    <?php
                        function email()
                            {
                            $to = 'my_mail';
                            $message = $_POST['textarea'];
                            $from = $_POST['email'];
                            $subject = 'Portfolio';
                            $mail_headers = "From: " .  $from . " <" .  $from . ">\r\n";
                            $mail_headers .= "Reply-To: " .  $from . "\r\n";
                            $mail_headers .= "X-Mailer: PHP/" . phpversion();

                            echo $to . " " . $message . " " . $from;
                            if(@mail($to, $subject, $message, $mail_headers))
                                echo @mail($to, $subject, $message, $mail_headers);
                            else echo "ERROR";
                            }

if(isset($_POST['submit']))
email();
?>

电邮地址:
正文:
提交
我的_mail是我的邮件(我在这里替换了它,但代码中有我真正的邮件)。
代码似乎正常工作,事实上它显示了echo@mail,但邮件没有出现在我的收件箱中

代码看起来很好,但我认为由于邮件功能中的@,您没有看到任何错误。如果您不想显示错误,可以这样使用:

<?php
if(@mail($to, $subject, $message, $mail_headers)){
    echo "Mail Sent!";
}else{
    print_r(error_get_last());
}
?>

这样就不会抛出错误,但如果需要,可以使用error\u get\u last()查看错误并记录它


PS您使用邮件功能两次,因此邮件在工作时会发送两次。

以下是正确的方法

<form action="contact.php"  etc... etc..>
blah blah blah
</form>

废话废话
然后创建一个新的php文件(contact.php)并使用以下命令

<?php

$field_name = $_POST["cname"];/* change " " according to your form */
$field_email = $_POST["cmail"];
$field_sub = $_POST["csub"];
$field_message = $_POST["cmsg"];

$to = "mailid1@mail.com, mailid2@mail.com";
$subject = " give subject" ;
$message = "message";

if(mail($to,$subject,$message))
 {
      echo "<script>alert('Your Message was sent Successfully. Thank You For Your Time !');</script>";
      }
      else
      {
      echo "<script>alert('Something wrong happened. Please try again later. Sorry For The Trouble');                   </script>";
      }


?>
<meta http-equiv="refresh" content="2; url=contact.html"> 
<!-- for coming back to intial page -->

你在本地主机上?@DivyeshSavaliya是的,我在本地主机上!您必须配置服务器以发送邮件。您必须将SMTP设置到本地服务器server@DivyeshSavaliya没有。我该怎么做?