我的网页上有一个联系表单,其中包含姓名,电子邮件和文本(无主题)三个区域,表单下方有一个发送按钮。我应该怎么做才能使按钮起作用?我希望用户写出他们的姓名(最终将成为电子邮件的主题),他们的电子邮件和他们想要发送的文本,我想以他们的名字作为主题从他们那里接收电子邮件,他们的电子邮件以及将作为电子邮件正文编写的文本。另外,我不希望该按钮打开用户的电子邮件,例如Outlook等。我希望它默默发生。这样的结果是用户将文本写在联系表单中,按发送,然后我收到电子邮件。
提前非常感谢您!
拉斐尔。
答案 0 :(得分:1)
首先,您必须学习php才能使其工作。您不能仅使用表单设计来发送邮件。 另外,您必须将文件上传到服务器上。发送邮件需要SMTP,它在localhost上不起作用。
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。