首先:对于byet.host (一个网站)这是没有建议的。 第二:我在数据库,mysql等方面有点像菜鸟
好的,所以我有一个有联系表格的网站。当我在我的XAMPP服务器中运行它时,它工作正常(我收到一封邮件,其中包含他们在表单中输入的信息)。但是当我在我的byet.host服务器上运行它时,我没有收到电子邮件。我需要设置数据库,还是做其他事情?
<?php
$n = $_POST['n'];
$e = $_POST['e'];
$m = $_POST['m'];
$to = "**@gmail.com";
$subject = "** message";
$headers = 'From: **@gmail.com';
$message = '
Client name: '.$n.'
Client e-mail: '.$e.'
Client message: '.$m.'
Contact and website hosting is done by **.
';
if (
mail($to, $subject, $message, $headers)
)
echo"<script>alert('Your message has been send succesfully!')</script>";
else
echo"<script>alert('ERROR. Please contact us on Instagram. Message not send.')</script>";
?>