对不起,我正在学习在自定义网站上构建一个简单的联系表。我想通过mail()发送电子邮件,但是没有收到邮件。如何通过Sendmail路径设置它?
<?php
if (isset($_POST['email'])) {
//Email information
$to="admin@example.com";
$subject='New Form Submission';
$name=$_POST['name'];
$email=$_POST['email'];
$phone=$_POST['phone'];
$message=$_POST['message'];
//send email
mail($to,$subject,$message);
header('Location:success.html');
}
?>
答案 0 :(得分:0)
您正在将要将邮件发送到的地址设置为“ admin@example.com”。您应该将其更改为mail($ email,$ subject,$ message);
答案 1 :(得分:0)
//发送电子邮件
B.PRODUCT_ID