我使用 php、html 和 css 编写了一个代码。这是提交后通过电子邮件收到的联系表格。提交时没有错误,但我没有收到电子邮件。我在这里包括代码。这是链接:http ://complaintdesk.byethost15.com/contact.php 。我也在这里包含代码。
联系人.php
<?php
if(isset($_POST['submit'])){
$name = $_POST['fullname'];
$branch = $_POST['branch'];
$usn = $_POST['usn'];
$sem = $_POST['sem'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$description = $_POST['comment'];
$to = 'email@example.com';
$display = 'From:</br>Name: $name</br>USN: $usn</br>Branch: $branch</br>Semester: $sem</br>Email: $email</br></br>$description';
mail($to,$subject,$display);
echo "<script>alert('Your Complaint has been succesfully submitted, We will contact you soon.')</script>";
};
?>
其余代码我不包括在内...