联系表单的响应式HTML和Php脚本


Responsive HTML & Php Script for a contact form

我是新手,我需要有人帮我为下面的联系表格提供一个PhP脚本,该脚本会将详细信息发送到电子邮件地址,而无需离开联系人.html页面,但有一个小窗口,上面写着"已提交"

这是我的表单HTML5代码:

<form id="form" class="form" name="form" method="post" enctype="multipart/form-data" accept-charset="UTF-8" action="submit.php">
    <h1>Contact us</h1>
    <div class="content">
        <div class="intro"></div>
        <div id="section0" >
            <div class="field"><label for="Name">Name</label><input type="text" id="Name" name="Name" placeholder="Name" required></div>
            <div class="field"><label for="Email">Email</label><input type="email" id="Email" name="Email" placeholder="Email" required></div>
            <div class="field"><label for="Telephone">Telephone</label><input type="tel" id="Telephone" name="Telephone" required></div>
            <div class="field"><label for="Message">Message</label><textarea id="Message" name="Message" wrap="hard" required></textarea></div>
            <div class="field"><div class="edit-options"><div class="edit"></div><div class="delete"></div></div><label for="Submit">Submit</label><input name="Submit" type="submit" required id="Submit" formaction="send_form_email.php"></div>
        </div>
    </div>
</form>
  </div>

如果有人能帮助我,我将不胜感激,因为我在这些在线 php 表单上浪费了钱,他们只想为基本联系表单收取各种费用。

谢谢

您可以在互联网上轻松找到如何整理联系表格,但您需要将您的网站上传到某个服务器上,以检查电子邮件是否正常工作。 https://www.youtube.com/watch?v=5a_zy_utoFM