duanjianao0592 2018-04-02 04:18
浏览 43
已采纳

如何从HTML表单发送邮件? [重复]

This question already has an answer here:

I made a form and my task is to sending mail to the mail server.I tried with mailto HTML attributes.But failed.Then start with php.It was not working also.So I badly need help.

<form method="post" action="form-to-email.html">
                                <div class="col-md-12">
                                    <div class="form-group">
                                        <label for="exampleInputName">Your Name (required)</label>
                                        <input type="text" class="form-control"  name="name" placeholder="Enter Your Name">

                                    </div>
                                    <div class="form-group">
                                        <label for="exampleInputEmail1">Your Email (required)</label>
                                        <input type="Email" class="form-control" name="email" placeholder="Enter Your Email">

                                    </div>
                                    <div class="form-group">
                                        <label for="exampleInputTextarea">Your Message</label>
                                        <textarea class="form-control" placeholder="Enter Your Message" rows="4" name="message"></textarea>
                                    </div>

                                    <button type="submit" value="Send Email" class="btn btn-default">Send</button>

                                    </div>
                                </form>

And this is my php code.

<?php
if(isset($_POST['name'])&&isset($_POST['email'])){
$name = $_POST['name'];
  $visitor_email = $_POST['email'];
  $message = $_POST['message'];
    $email_from = 'dbgreen71@heidianderson.com.au';
    $email_subject = "New Form submission";
    $email_body = "You have received a new message from the user $name.
".    
                            "Here is the message:
 $message".    
$to = "dbgreen71@heidianderson.com.au";
  $headers = "From: $email_from 
";
  $headers .= "Reply-To: $visitor_email 
";
  mail($to,$email_subject,$email_body,$headers);
}
?>

Someone please help me.I really don't find any way to do this task.

</div>
  • 写回答

1条回答 默认 最新

  • duanaigua4033 2018-04-02 04:27
    关注

    Try this and tell if you get any error:

    <?php
        $visitor_email = $_POST['email'];
        $message = $_POST['message'];
        $email_subject = "New Form submission";
        $to = "dbgreen71@heidianderson.com.au";
        $subject = $email_subject;
        $email_from = 'dbgreen71@heidianderson.com.au';
        $header = "From:dbgreen71@heidianderson.com.au 
    ";
        $header .= "MIME-Version: 1.0
    ";
        $header .= "Content-type: text/html
    ";
    
        $retval = mail ($to,$subject,$message,$header);
    
        if( $retval == true ) {
        echo "Message sent successfully...";
        }else {
        echo "Message could not be sent...";
        $errorMessage = error_get_last()['message'];
        echo $errorMessage;
        }
    ?>
    

    Also I have added error handling code which will help you in near future if you get any errors related to mail. Another thing, if you need headers then and then only use it, or else it is of no usage. You can even send emails without headers.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥15 请帮我解决一下下面六个代码
  • ¥15 关于资源监视工具的e-care有知道的嘛
  • ¥35 MIMO天线稀疏阵列排布问题
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)