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 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题