编辑(#1)
如果我理解正确,那么您希望将所有内容都放在一个页面中并从同一页面执行。
您可以使用下面的代码从单个页面发送邮件,例如index.php
或contact.php
此答案与我的原始答案之间的唯一区别是<form action="" method="post">
操作保留为空白。
最好header('Location: thank_you.php');
不要echo
在PHP处理程序中使用,之后再将用户重定向到另一个页面。
将下面的整个代码复制到一个文件中。
<?php
if(isset($_POST['submit'])){
$to = "email@example.com";
$from = $_POST['email'];
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$subject = "Form submission";
$subject2 = "Copy of your form submission";
$message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2);
echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
}
?>
<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>
<form action="" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_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>
</body>
</html>
原始答案
我不太确定问题是什么,但给人的印象是,该消息的副本将发送给填写表格的人。
这是HTML表单和PHP处理程序的经过测试/有效的副本。这使用了PHPmail()
函数。
PHP处理程序还将把消息的副本发送给填写表格的人。
//
如果您不打算使用它,则可以在一行代码前使用两个正斜杠。
例如: // $subject2 = "Copy of your form submission";
将不执行。
HTML格式:
<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>
<form action="mail_handler.php" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_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>
</body>
</html>
PHP处理程序(mail_handler.php)
(使用来自HTML表单的信息并发送电子邮件)
<?php
if(isset($_POST['submit'])){
$to = "email@example.com";
$from = $_POST['email'];
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$subject = "Form submission";
$subject2 = "Copy of your form submission";
$message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];
$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2);
echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
}
?>
以HTML格式发送:
如果希望将邮件作为HTML发送给这两个实例,则需要创建两个单独的HTML标头集,并使用不同的变量名。
阅读手册mail()
,了解如何以HTML格式发送电子邮件:
脚注:
您必须使用action属性指定将处理提交的数据的服务的URL。
如https://www.w3.org/TR/html5/forms.html在4.10.1.3下所述,配置表单以与服务器进行通信。有关完整的信息,请参阅页面。
因此,action=""
将无法在HTML5中使用。
正确的语法为:
action="handler.xxx"
要么
action="http://www.example.com/handler.xxx"
。
请注意,这xxx
将是用于处理该过程的文件类型的扩展名。这可能是一个.php
,.cgi
,.pl
,.jsp
文件扩展名等。
如果发送邮件失败,请在堆栈上咨询以下问答: