它在localhost上运行吗?我正在使用 xampp 。我无法在Gmail上收到任何邮件。我需要使用PHP邮件程序吗?
<?php
if(isset($_POST['submit'])){
$msg = 'Name: ' .$_POST['Fname'] ."\n"
.'Email: '.$_POST['email'] ."\n"
.'Comment: '.$_POST['comment'] ;
mail('graceprince@gmail.com', 'sample contact us Form', $msg);
header('location: index.php');
}else {
header('location:contact.php');
exit(0);
}
?>