"Send" 链接到联系表的按钮

"Send" Button linked to contact form

我的网页上有一个联系表格,其中包含姓名、电子邮件和文本(无主题)3 个区域,表格下方有一个发送按钮。我应该怎么做才能使按钮起作用?我希望用户写下他们的姓名(最终将成为电子邮件的主题)、他们的电子邮件和他们想要发送的文本,我希望从他们那里收到以他们的名字为主题的电子邮件,他们的电子邮件和他们会写成电子邮件正文的文本。另外,我不希望按钮打开用户电子邮件,如 outlook 等。我希望它静静地发生。所以结果将是用户在联系表中输入文本,按下发送键,然后我收到了电子邮件。

非常感谢,提前!!!

拉斐尔.

首先,您必须学习 php 才能使其发挥作用。您不能仅使用表单设计来发送邮件。 此外,您必须将文件上传到服务器上。发送邮件需要 SMTP,这在本地主机上不起作用。

HTML:

<form action="mail_handler.php" method="
FullName: <input type="text" name="full_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>

mail_handler.php

 <?php 
    if(isset($_POST['submit'])){
        $to = "email@example.com"; // this is your Email address
        $from = $_POST['email']; // this is the sender's Email address
        $full_name = $_POST['full_name'];
        $subject = "Form submission";
        $subject2 = "Copy of your form submission";
        $message = $full_name . " wrote the following:" . "\n\n" . $_POST['message'];
        $message2 = "Here is a copy of your message " . $full_name . "\n\n" . $_POST['message'];

        $headers = "From:" . $from;
        $headers2 = "From:" . $to;
        mail($to,$subject,$message,$headers);
        mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
        echo "Mail Sent. Thank you " . $full_name . ", we will contact you";
        }
    ?>

我建议你在实施之前先看一些教程。在实施之前,您需要了解 php。